Closed guotong1988 closed 6 years ago
the first example is trivial for KB reasoning. If you have enough examples of this reasoning pattern, current model should be able to learn such rule.
for the second one, if you only rely on KB reasoning, you should add the triple (180, larger than, 175) as another evidence. This kind of common sense can be challenging for existing system to learn.
Thank you.
How you think Semantic Parsing method for KG? Thank you.
Myself do not work on semantic parsing. You can read Percy Liang or Scott Yih's papers
Thank you.
So you think semantic parsing is also promising and hot?
yes
1, A lives in C.
(A, liveInCity, C)
B lives in C.(B, liveInCity, C)
Does A and B live in the same city?2, A is 180 cm height.
(A, height, 180)
B is 175 cm height.(B, height, 175)
Is B taller than A?Thank you very much.