Skip to content

Commit dd016f4

Browse files
authored
Merge pull request #154 from Kitt-AI/v1.1.1
V1.1.1
2 parents e99ff31 + 8d25542 commit dd016f4

File tree

2 files changed

+54
-29
lines changed

2 files changed

+54
-29
lines changed

README.md

Lines changed: 53 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -10,26 +10,63 @@ by [KITT.AI](http://kitt.ai).
1010

1111
(The discussion group is new since September 2016 as we are getting many messages every day. Please send general questions there. For bugs, use Github issues.)
1212

13-
Version: 1.1.0 (9/20/2016)
13+
Version: 1.1.1 (3/24/2017)
1414

15-
## New!
16-
17-
### Alexa support
15+
## Alexa support
1816

1917
Snowboy now brings hands-free experience to the [Alexa AVS sample app](https://github.com/alexa/alexa-avs-sample-app) on Raspberry Pi! Here is how you can use other Snowboy models
2018

2119
**Personal model**
2220
* Create your personal hotword model through our [website](https://snowboy.kitt.ai) or [hotword API](https://snowboy.kitt.ai/api/v1/train/)
2321
* Replace the hotword model in [Alexa AVS sample app](https://github.com/alexa/alexa-avs-sample-app) (after installation) with your personal model
24-
* Set `APPLY_FRONTEND` to `false` in the [Alexa AVS sample app code](https://github.com/alexa/alexa-avs-sample-app/blob/master/samples/wakeWordAgent/src/KittAiSnowboyWakeWordEngine.cpp) and re-compile
22+
23+
```
24+
# Please replace YOUR_PERSONAL_MODEL.pmdl with the personal model you just
25+
# created, and $ALEXA_AVS_SAMPLE_APP_PATH with the actual path where you
26+
# cloned the Alexa AVS sample app repository.
27+
cp YOUR_PERSONAL_MODEL.pmdl $ALEXA_AVS_SAMPLE_APP_PATH/samples/wakeWordAgent/ext/resources/alexa.umdl
28+
```
29+
30+
* Set `APPLY_FRONTEND` to `false` and update `SENSITIVITY` in the [Alexa AVS sample app code](https://github.com/alexa/alexa-avs-sample-app/blob/master/samples/wakeWordAgent/src/KittAiSnowboyWakeWordEngine.cpp) and re-compile
31+
32+
```
33+
# Please replace $ALEXA_AVS_SAMPLE_APP_PATH with the actual path where you
34+
# cloned the Alexa AVS sample app repository.
35+
cd $ALEXA_AVS_SAMPLE_APP_PATH/samples/wakeWordAgent/src/
36+
37+
# Modify KittAiSnowboyWakeWordEngine.cpp and update SENSITIVITY at line 28.
38+
# Modify KittAiSnowboyWakeWordEngine.cpp and set APPLY_FRONTEND to false at
39+
# line 30.
40+
make
41+
```
42+
2543
* Run the wake word agent with engine set to `kitt_ai`!
2644

2745
**Universal model**
2846
* Replace the hotword model in [Alexa AVS sample app](https://github.com/alexa/alexa-avs-sample-app) (after installation) with your universal model
47+
48+
```
49+
# Please replace YOUR_UNIVERSAL_MODEL.umdl with the personal model you just
50+
# created, and $ALEXA_AVS_SAMPLE_APP_PATH with the actual path where you
51+
# cloned the Alexa AVS sample app repository.
52+
cp YOUR_UNIVERSAL_MODEL.umdl $ALEXA_AVS_SAMPLE_APP_PATH/samples/wakeWordAgent/ext/resources/alexa.umdl
53+
```
54+
55+
* Update `SENSITIVITY` in the [Alexa AVS sample app code](https://github.com/alexa/alexa-avs-sample-app/blob/master/samples/wakeWordAgent/src/KittAiSnowboyWakeWordEngine.cpp) and re-compile
56+
57+
```
58+
# Please replace $ALEXA_AVS_SAMPLE_APP_PATH with the actual path where you
59+
# cloned the Alexa AVS sample app repository.
60+
cd $ALEXA_AVS_SAMPLE_APP_PATH/samples/wakeWordAgent/src/
61+
62+
# Modify KittAiSnowboyWakeWordEngine.cpp and update SENSITIVITY at line 28.
63+
make
64+
```
65+
2966
* Run the wake word agent with engine set to `kitt_ai`!
3067

3168

32-
### Hotword as a Service
69+
## Hotword as a Service
3370

3471
Snowboy now offers **Hotword as a Service** through the ``https://snowboy.kitt.ai/api/v1/train/``
3572
endpoint. Check out the [Full Documentation](http://docs.kitt.ai/snowboy) and example [Python/Bash script](examples/REST_API) (other language contributions are very welcome).
@@ -141,12 +178,13 @@ dependencies like `fs`, `wav` or `node-record-lpcm16` depending on which script
141178
you use.
142179

143180
## Precompiled Binaries with Python Demo
144-
* 64 bit Ubuntu [12.04](https://s3-us-west-2.amazonaws.com/snowboy/snowboy-releases/ubuntu1204-x86_64-1.1.0.tar.bz2)
145-
/ [14.04](https://s3-us-west-2.amazonaws.com/snowboy/snowboy-releases/ubuntu1404-x86_64-1.1.0.tar.bz2)
146-
* [MacOS X](https://s3-us-west-2.amazonaws.com/snowboy/snowboy-releases/osx-x86_64-1.1.0.tar.bz2)
181+
* 64 bit Ubuntu [12.04](https://s3-us-west-2.amazonaws.com/snowboy/snowboy-releases/ubuntu1204-x86_64-1.1.1.tar.bz2)
182+
/ [14.04](https://s3-us-west-2.amazonaws.com/snowboy/snowboy-releases/ubuntu1404-x86_64-1.1.1.tar.bz2)
183+
* [MacOS X](https://s3-us-west-2.amazonaws.com/snowboy/snowboy-releases/osx-x86_64-1.1.1.tar.bz2)
147184
* Raspberry Pi with Raspbian 8.0, all versions
148-
([1/2/3/Zero](https://s3-us-west-2.amazonaws.com/snowboy/snowboy-releases/rpi-arm-raspbian-8.0-1.1.0.tar.bz2))
149-
* Intel Edison (Ubilinux based on Debian Wheezy 7.8) ([download](https://s3-us-west-2.amazonaws.com/snowboy/snowboy-releases/edison-ubilinux-1.1.0.tar.bz2))
185+
([1/2/3/Zero](https://s3-us-west-2.amazonaws.com/snowboy/snowboy-releases/rpi-arm-raspbian-8.0-1.1.1.tar.bz2))
186+
* Pine64 (Debian Jessie 8.5 (3.10.102)) ([download](https://s3-us-west-2.amazonaws.com/snowboy/snowboy-releases/pine64-debian-jessie-1.1.1.tar.bz2))
187+
* Intel Edison (Ubilinux based on Debian Wheezy 7.8) ([download](https://s3-us-west-2.amazonaws.com/snowboy/snowboy-releases/edison-ubilinux-1.1.1.tar.bz2))
150188

151189
If you want to compile a version against your own environment/language, read on.
152190

@@ -334,30 +372,17 @@ See [Full Documentation](http://docs.kitt.ai/snowboy).
334372

335373
## Change Log
336374

337-
**3/3/2017**
375+
**v1.1.1, 3/24/2017**
338376

377+
* Added Android demo
378+
* Added iOS demos
339379
* Added Samsung Artik support
340-
341-
**2/27/2017**
342-
343380
* Added Go support
344-
345-
**2/24/2017**
346-
347381
* Added Intel Edison support
348-
349-
**2/21/2017**
350-
351382
* Added Pine64 support
352-
353-
**2/9/2017**
354-
355383
* Added a more robust "Alexa" model (umdl)
356-
357-
**9/28/2016**
358-
359384
* Offering Hotword as a Service through ``/api/v1/train`` endpoint.
360-
* No version bump since decoder is not changed.
385+
* Decoder is not changed.
361386

362387
**v1.1.0, 9/20/2016**
363388

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "snowboy",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"description": "Snowboy is a customizable hotword detection engine",
55
"main": "lib/node/index.js",
66
"binary": {

0 commit comments

Comments
 (0)