-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
“Who are you and what do you want?” #73
Comments
I don't think we should focus on such questions (i.e. "What is the size of an ant and who is the president of the United States?"). These are really stupid... Moreover, if we wanted to parse it correctly, we would have to output an union and not an intersection, which would be a bad choice for a lot of more interesting questions (we already discussed it). |
When there are two question words, separated by an “and”, I think you could guess it's a union |
Mentionned in ProjetPP/Documentation#48 (comment) I find the questions such as "What are the capital of France and the recipe for cookies?" irrelevant. Moreover, if for some obscure reason we still want to answer to these questions, this cannot be done by this module, due to the choice we made : "and" are intersections and "or" are unions. @yhamoudi what do you think? |
Better example: |
It could be intersting to handle multiple questions. However, I'm not sure that using the "union" operator of the datamodel is the right way to do (at the end, there is no distinction between the answers, ex: "What are the capitals of France and Germany?" -> [Paris,Berlin] -> we do not know which one is the capital of France). I think there could be a preprocessing operation that splits the questions in many entities ("What are the capitals of France and Germany?" > "What is the capital of France?" + "What is the capital of Germany") and then each question is processed individualy. We could handle (into the question parsing) “Who are you and what do you want?”, but i dislike adding heuristics for such strange cases. |
Good remark. |
Not sure (perhaps it's the task of the core to deal with multiples questions and the task of the web ui to display properly the answers to each question). I think we can always split the question without losing any information. For instance if the question is "Who is the prime minister of United Kingdom and where does he live?" it could become : "Who is the prime minister of United Kingdom?" + "Where does the prime minister of United Kingdom live?" See |
http://askplatyp.us/?lang=en&q=Who+are+you+and+what+do+you+want%3F
The text was updated successfully, but these errors were encountered: