From 1c3567d8e9d97ef24e9fbb0c5f38b9dc21cccbdb Mon Sep 17 00:00:00 2001 From: Ekaterina Krivich Date: Tue, 21 Aug 2018 10:20:19 +0300 Subject: [PATCH] Model folder change resources/snowboy.umdl -> resources/models/snowboy.umdl --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8b286442..b6379605 100644 --- a/README.md +++ b/README.md @@ -280,7 +280,7 @@ Feel free to adapt the `Makefile` in `swig/Python` to your own system's setting cd examples/Go go get github.com/Kitt-AI/snowboy/swig/Go go build -o snowboy main.go - ./snowboy ../../resources/snowboy.umdl ../../resources/snowboy.wav + ./snowboy ../../resources/models/snowboy.umdl ../../resources/snowboy.wav Expected Output: @@ -360,7 +360,7 @@ Go to the `examples/Python` folder and open your python console: ....: print "hotword detected" ....: - In [3]: detector = snowboydecoder.HotwordDetector("resources/snowboy.umdl", sensitivity=0.5, audio_gain=1) + In [3]: detector = snowboydecoder.HotwordDetector("resources/models/snowboy.umdl", sensitivity=0.5, audio_gain=1) In [4]: detector.start(detected_callback)