lang-model/naive-nlu/knowledge_base.py

9 lines
375 B
Python

import collections
KnowledgeBase = collections.namedtuple('KnowledgeBase',
[
'examples', # Language examples
'knowledge', # Knowledge about the world
'trained',
])