Zmiana nazwy pliku CamelCase -> snake_case

This commit is contained in:
s495727 2024-05-03 00:35:50 +02:00
parent c70685682d
commit 20531d729d
2 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,11 @@
from model.frame import Frame
from service.dialog_state_monitor import DialogStateMonitor
from service.dialog_policy import DialogPolicy
from service.natural_languag_understanding import NaturalLanguageUnderstanding
print("Natural language understanding, example:")
naturalLanguageUnderstanding = NaturalLanguageUnderstanding()
print(naturalLanguageUnderstanding.convertTextToFrame("Cześć, jak masz na imię?"))
# Example
print("Dialog state monitor, examples:")

View File

@ -12,7 +12,3 @@ class NaturalLanguageUnderstanding:
if(word in self.dictionary):
frame+=self.dictionary[word]+"&"
return frame[0:-1]
naturalLanguageUnderstanding = NaturalLanguageUnderstanding()
print(naturalLanguageUnderstanding.convertTextToFrame("Cześć, jak masz na imię?"))