robocup_knowledge
robotics_testlabs/challenge_speech_recognition.py
Go to the documentation of this file.
1 choice_answer_mapping = {
2 "What shape is this building" : " UFO",
3 "Who was beaten by AlphaGo" : " Lee Sedol",
4 "Which chess grand master was beaten by Deep Blue" : " Gary Kasparov",
5 "What is the first law of robotics" : "A robot may not injure a human being or through inaction allow a human being to come to harm",
6 "What is the second law of robotics" : "A robot must obey orders given it by human beings except where such orders would conflict with the First Law",
7 "What is the third law of robotics" : "A robot must protect its own existence as long as such protection does not conflict with the First or Second Law",
8 "How many arms do you have" : " I should have two",
9 "What is this building called" : " Evoluon",
10 "What city are we in" : " Eindhoven",
11 "What country are we in" : " Netherlands",
12 "What continent are we on" : " Europe",
13 "What planet are we on" : " Earth",
14 "Who wrote the Laws of robotics" : " Isaac Asimov",
15 "Which robot was the star of Short Circuit" : " Johny Five",
16 "Who is the companion of R2D2" : " C-3PO",
17 "What is the name of the actor that played Commander Data" : " Brent Spiner",
18 "What is the term for a robot that looks like a human" : " Android",
19 "Name the two families in Romeo and Juliet" : " Montague & Capulet",
20 "What are names of Donald Duck's nephes" : " Huey Dewey and Louie Duck",
21 "How many litres are in a gallon" : " About 4 but US and imperial gallons are different.",
22 "What did Alan Turing break" : " The Enigma code.",
23 "Who coined the term bug in computer programming" : " Grace Hopper",
24 "What Apollo was the first to land on the moon" : " Apollo 11",
25 "Who was the first man to step on the moon" : " Neil Armstrong",
26 "What does Hannibal say in The A-Team when a plan works" : " I love it when a plan comes together",
27 "Who made an offer that can't be refused" : " Don Corleone in The Godfather",
28 "What should you never forget in The Hitchhiker's Guide to the Galaxy" : " A towel",
29 "What is the lightest element" : " Hydrogen",
30 "Where does the president of the United States live" : " The White House",
31 "Where does the prime minister of the UK live" : " 10 Downing Street",
32 "Name a wizard in The Lord of the Rings" : " Gandalf",
33 "Who is the prime ministor of the Netherlands" : " Mark Rutte",
34 "How many bits are in a byte" : " Eight",
35 "What is the full name of DNA" : " Deoxyribonucleic acid",
36 "What is the heavy breathing character of the original Star Wars trilogy" : " Darth Vader",
37 "Which company makes ASIMO" : " Honda",
38 "What company makes Big Dog" : " Boston Dynamics",
39 "Who is the co-pilot of the Millennium Falcon" : " Chewbacca",
40 "How many people live in the Netherlands" : " About 16.8 million",
41 "What are the colours of the Dutch flag" : " Red white and blue.",
42 "What city is the capital of the Neterlands" : " Amsterdam",
43 "What countries does the Netherlands have as neighbors" : " Belgium and Germany",
44 "What city used to be called New Amsterdam" : " New York City",
45 "Can you name an animal that is a bird but can't fly" : " Penguins",
46 "What does ROM stand for in computing" : " Read-Only Memory",
47 "What is DVD an abbreviation of" : " Digital Versatile Disc or Digital Video Disc",
48 "Who is the original creator on Linux" : " Linux Torvalds",
49 "What operating system do you run" : " ubuntu baby",
50 "How many wheels do you have" : " four",
51 "What is your team name" : " tech united"
52 }
53 
54 spec = '<question>'
55 choices = {'question': choice_answer_mapping.keys()}
56