How to increase the complexity of facts #34
albertgong1
started this conversation in
General
Replies: 2 comments
|
See this great textbook on question answering: https://link.springer.com/book/10.1007/978-3-031-79512-1 |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
1-ary facts: entities
Person(X) -> X is a person
Job(X) -> X is a job
Hobby(X) -> X is a hobby
2-ary facts: relations, attributes
Parent(X,Y)
Gender(X,Y)
Occupation(X,Y)
We also have the following binary relations, which we haven't used yet: https://github.com/ag2435/phantom-wiki/blob/main/src/phantom_wiki/core/constants/relation_templates.py
These relations are a subset of 50 relations from RippleEdit that map to WikiData predicates: https://github.com/edenbiran/RippleEdits/blob/main/src/wikidata/relations.py
Some examples:
3-ary facts:
Marriage(X,Y,Z) -> X and Y got married on Z
Interaction(X,Y,Z) -> X and Y met through Z
All reactions