Пример #1
0
 def add_other(self):
     try:
         return NBList.add_other(self, DialogueAct('other()'))
     except NBListException as e:
         raise DialogueActNBListException(e)
Пример #2
0
 def scale(self):
     """Scales the n-best list to sum to one."""
     return NBList.normalise(self)
Пример #3
0
 def __init__(self):
     NBList.__init__(self)
Пример #4
0
Файл: da.py Проект: oplatek/alex
 def add_other(self):
     try:
         return NBList.add_other(self, DialogueAct('other()'))
     except NBListException as e:
         raise DialogueActNBListException(e)
Пример #5
0
Файл: da.py Проект: oplatek/alex
 def scale(self):
     """Scales the n-best list to sum to one."""
     return NBList.normalise(self)
Пример #6
0
Файл: da.py Проект: oplatek/alex
 def __init__(self):
     NBList.__init__(self)