CREAK: A Dataset for Commonsense Reasoning over Entity Knowledge
Paper
• 2109.01653 • Published
YAML Metadata Warning: empty or missing yaml metadata in repo card
Check out the documentation for more information.
This framework is trained on the CREAK dataset.
pip install creak-sense
from creak_sense import CreakSense
sense = CreakSense("fractalego/creak-sense")
claim = "Bananas can be found in a grocery list"
sense.make_sense(claim)
with output "True".
from creak_sense import CreakSense
sense = CreakSense("fractalego/creak-sense")
claim = "Bananas can be found in a grocery list"
sense.get_reason(claim)
with output "Bananas are a staple food".