You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+53-28Lines changed: 53 additions & 28 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,26 +10,63 @@ by [KITT.AI](http://kitt.ai).
10
10
11
11
(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.)
12
12
13
-
Version: 1.1.0 (9/20/2016)
13
+
Version: 1.1.1 (3/24/2017)
14
14
15
-
## New!
16
-
17
-
### Alexa support
15
+
## Alexa support
18
16
19
17
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
20
18
21
19
**Personal model**
22
20
* Create your personal hotword model through our [website](https://snowboy.kitt.ai) or [hotword API](https://snowboy.kitt.ai/api/v1/train/)
23
21
* 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
* 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
+
25
43
* Run the wake word agent with engine set to `kitt_ai`!
26
44
27
45
**Universal model**
28
46
* 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
* 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
+
29
66
* Run the wake word agent with engine set to `kitt_ai`!
30
67
31
68
32
-
###Hotword as a Service
69
+
## Hotword as a Service
33
70
34
71
Snowboy now offers **Hotword as a Service** through the ``https://snowboy.kitt.ai/api/v1/train/``
35
72
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
141
178
you use.
142
179
143
180
## 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)
* 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))
* 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))
150
188
151
189
If you want to compile a version against your own environment/language, read on.
152
190
@@ -334,30 +372,17 @@ See [Full Documentation](http://docs.kitt.ai/snowboy).
334
372
335
373
## Change Log
336
374
337
-
**3/3/2017**
375
+
**v1.1.1, 3/24/2017**
338
376
377
+
* Added Android demo
378
+
* Added iOS demos
339
379
* Added Samsung Artik support
340
-
341
-
**2/27/2017**
342
-
343
380
* Added Go support
344
-
345
-
**2/24/2017**
346
-
347
381
* Added Intel Edison support
348
-
349
-
**2/21/2017**
350
-
351
382
* Added Pine64 support
352
-
353
-
**2/9/2017**
354
-
355
383
* Added a more robust "Alexa" model (umdl)
356
-
357
-
**9/28/2016**
358
-
359
384
* Offering Hotword as a Service through ``/api/v1/train`` endpoint.
0 commit comments