From 305a6f8c9949a357893cc182f5a64801b37a3505 Mon Sep 17 00:00:00 2001 From: Ideefixze Date: Fri, 12 Feb 2021 14:49:09 +0100 Subject: [PATCH] Output --- hotword_adjusting/README.md | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/hotword_adjusting/README.md b/hotword_adjusting/README.md index 255ef02..632ea2a 100644 --- a/hotword_adjusting/README.md +++ b/hotword_adjusting/README.md @@ -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] # Example output + +For an input: ``` -['bad'] = (-20.0,) :: [why are they sad and glad and that i do not know go ask your dad] -['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 ] +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', '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] ```