9 lines
375 B
Python
9 lines
375 B
Python
import collections
|
|
|
|
KnowledgeBase = collections.namedtuple('KnowledgeBase',
|
|
[
|
|
'examples', # Language examples
|
|
'knowledge', # Knowledge about the world
|
|
'trained',
|
|
])
|