Merge branch 'master' of https://git.wmi.amu.edu.pl/s151636/Generic_DialogSystem
This commit is contained in:
commit
e989147807
29
system.py
Normal file
29
system.py
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
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