Separation of functionalities in modules.
This commit is contained in:
parent
5b30713df1
commit
edc3cb97ab
4 changed files with 131 additions and 127 deletions
8
naive-nlu/knowledge_base.py
Normal file
8
naive-nlu/knowledge_base.py
Normal file
|
@ -0,0 +1,8 @@
|
|||
import collections
|
||||
|
||||
KnowledgeBase = collections.namedtuple('KnowledgeBase',
|
||||
[
|
||||
'examples', # Language examples
|
||||
'knowledge', # Knowledge about the world
|
||||
'trained',
|
||||
])
|
Loading…
Add table
Add a link
Reference in a new issue