Added class schemat to system.py
This commit is contained in:
parent
70cc3d18c7
commit
f2bb3e49b3
30
system.py
30
system.py
@ -1 +1,29 @@
|
||||
#tu będzie system o imieniu
|
||||
NAME = 'ABC'
|
||||
|
||||
class NaturalLanguageUnderstanding():
|
||||
def __init__(self, text):
|
||||
self.text = text
|
||||
def textToFrame():
|
||||
pass
|
||||
|
||||
class DialogueStateTracker():
|
||||
def __init__(self, frame):
|
||||
self.frame = frame
|
||||
def NLUFrameToDSTFrame():
|
||||
pass
|
||||
|
||||
class DialoguePolicy():
|
||||
def __init__(self, frame):
|
||||
self.frame = frame
|
||||
def DSTFrameToDPFrame():
|
||||
pass
|
||||
|
||||
class NaturalLanguageGeneration():
|
||||
def __init__(self, frame):
|
||||
self.frame = frame
|
||||
def DPFrameToText():
|
||||
pass
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
||||
print(f"Hello World. I am {NAME}")
|
Loading…
Reference in New Issue
Block a user