From 7c85ecd41f9af7c4c376544405997944dffcc1aa Mon Sep 17 00:00:00 2001 From: pietrzakkuba Date: Mon, 19 Apr 2021 16:59:42 +0200 Subject: [PATCH] mockups (work in progress) --- NaturalLanguageGeneration.py | 0 NaturalLanguageUnderstanding.py | 0 DialoguePolicy.py => Presenter.py | 0 DialogueStateTracker.py => View.py | 0 model/DialoguePolicy.py | 3 +++ model/DialogueStateTracker.py | 3 +++ model/NaturalLanguageGeneration.py | 4 ++++ model/NaturalLanguageUnderstanding.py | 3 +++ 8 files changed, 13 insertions(+) delete mode 100644 NaturalLanguageGeneration.py delete mode 100644 NaturalLanguageUnderstanding.py rename DialoguePolicy.py => Presenter.py (100%) rename DialogueStateTracker.py => View.py (100%) create mode 100644 model/DialoguePolicy.py create mode 100644 model/DialogueStateTracker.py create mode 100644 model/NaturalLanguageGeneration.py create mode 100644 model/NaturalLanguageUnderstanding.py diff --git a/NaturalLanguageGeneration.py b/NaturalLanguageGeneration.py deleted file mode 100644 index e69de29..0000000 diff --git a/NaturalLanguageUnderstanding.py b/NaturalLanguageUnderstanding.py deleted file mode 100644 index e69de29..0000000 diff --git a/DialoguePolicy.py b/Presenter.py similarity index 100% rename from DialoguePolicy.py rename to Presenter.py diff --git a/DialogueStateTracker.py b/View.py similarity index 100% rename from DialogueStateTracker.py rename to View.py diff --git a/model/DialoguePolicy.py b/model/DialoguePolicy.py new file mode 100644 index 0000000..78af689 --- /dev/null +++ b/model/DialoguePolicy.py @@ -0,0 +1,3 @@ +class DialoguePolicy: + pass + diff --git a/model/DialogueStateTracker.py b/model/DialogueStateTracker.py new file mode 100644 index 0000000..588a6dc --- /dev/null +++ b/model/DialogueStateTracker.py @@ -0,0 +1,3 @@ +class DialogueStateTracker: + pass + diff --git a/model/NaturalLanguageGeneration.py b/model/NaturalLanguageGeneration.py new file mode 100644 index 0000000..217fe0b --- /dev/null +++ b/model/NaturalLanguageGeneration.py @@ -0,0 +1,4 @@ +class NaturalLanguageGeneration: + def get_frame(self, input_from_user): + pass + diff --git a/model/NaturalLanguageUnderstanding.py b/model/NaturalLanguageUnderstanding.py new file mode 100644 index 0000000..f26d5cb --- /dev/null +++ b/model/NaturalLanguageUnderstanding.py @@ -0,0 +1,3 @@ +class NaturalLanguageUnderstanding: + pass +