This commit is contained in:
Ideefixze 2021-02-12 14:49:09 +01:00
Родитель edbb5ea103
Коммит 305a6f8c99
1 изменённых файлов: 15 добавлений и 3 удалений

Просмотреть файл

@ -13,9 +13,21 @@ This tests combinations of hot-words: 'hot' and 'cold' on audiofile 'filename.wa
Using prios/boost values from range [-100;100] by doing 3 steps: [-100, 0, 100] Using prios/boost values from range [-100;100] by doing 3 steps: [-100, 0, 100]
# Example output # Example output
For an input:
``` ```
['bad'] = (-20.0,) :: [why are they sad and glad and that i do not know go ask your dad] hotword_adjusting.py --model model.pbmm --scorer scorer.scorer --audio audio/seuss.wav --min -10.0 --max 10.0 --steps 3 --hot_words bad,glad
['bad'] = (0.0,) :: [why are they sad and glad and that i do not know go ask your dad] ```
['bad'] = (20.0,) :: [why are they bad and glad and bad i do not know go ask your bad ]
```
['bad', 'glad'] = (-10.0, -10.0) :: [why are they sad and lad and that i do not know go ask your dad]
['bad', 'glad'] = (-10.0, 0.0) :: [why are they sad and glad and that i do not know go ask your dad]
['bad', 'glad'] = (-10.0, 10.0) :: [why are they sad and glad and that i do not know go ask your dad]
['bad', 'glad'] = (0.0, -10.0) :: [why are they sad and lad and that i do not know go ask your dad]
['bad', 'glad'] = (0.0, 0.0) :: [why are they sad and glad and that i do not know go ask your dad]
['bad', 'glad'] = (0.0, 10.0) :: [why are they sad and glad and that i do not know go ask your dad]
['bad', 'glad'] = (10.0, -10.0) :: [why are they bad and bad and bad i do not know go ask your dad]
['bad', 'glad'] = (10.0, 0.0) :: [why are they bad and bad and bad i do not know go ask your dad]
['bad', 'glad'] = (10.0, 10.0) :: [why are they bad and glad and bad i do not know go ask your dad]
``` ```