[Resolved] problem with two view controllers

Home Forums OpenEars [Resolved] problem with two view controllers

Viewing 17 posts - 1 through 17 (of 17 total)

  • Author
    Posts
  • #1023504
    boombatz
    Participant

    Hi,
    I have logging turned on in both VC’s. I have these two lines of code in both VC’s
    [OELogging startOpenEarsLogging];
    self.pocketsphinxController.verbosePocketSphinx = TRUE;
    It is now running on an iphone 6 with ios 8.1.1

    I assume that’s what I need.Please let me know if that’s wrong. I need to include something else

    So, I have Two VC’s in the same app and they both use open ears. Whichever one I run first runs fine The second one does not find any words in it’s dictionary.

    For what’s it’s worth this ran beautifully in version 1.0 so maybe that’s a clue to help fix it for 2.0

    Here’s the log from the app running on the phone. Please let me know it you need anything else. This is all one app running. I have not edited the log
    Thanks.

    I this case the firs VC has a dictionary of ten digits – ZERO thru NINE. I notice that the logger lists the dictionary with extra items ie ZERO (2).
    The second VC uses a dictionary with four colors. The logger does not print out the second dictionary and it appears that the second VC might be trying to use the first dictionary???

    2014-12-12 07:37:23.800 Sample Tests[2254:954926] View Did Load
    2014-12-12 07:37:23.802 Sample Tests[2254:954926] Starting OpenEars logging for OpenEars version 2.0 on 64-bit device (or build): iPhone running iOS version: 8.100000
    2014-12-12 07:37:23.805 Sample Tests[2254:954926] Creating shared instance of OEPocketsphinxController
    2014-12-12 07:37:23.843 Sample Tests[2254:954926] Starting dynamic language model generation

    2014-12-12 07:37:23.910 Sample Tests[2254:954926] Done creating language model with CMUCLMTK in 0.066971 seconds.
    2014-12-12 07:37:23.951 Sample Tests[2254:954926] I’m done running performDictionaryLookup and it took 0.029845 seconds
    2014-12-12 07:37:23.959 Sample Tests[2254:954926] I’m done running dynamic language model generation and it took 0.150101 seconds
    2014-12-12 07:37:23.962 Sample Tests[2254:954926] view will appear
    2014-12-12 07:37:23.962 Sample Tests[2254:954926] Get started from beginning
    2014-12-12 07:37:23.962 Sample Tests[2254:954926] I’m running flite
    2014-12-12 07:37:24.187 Sample Tests[2254:954926] I’m done running flite and it took 0.224373 seconds
    2014-12-12 07:37:24.187 Sample Tests[2254:954926] Flite audio player was nil when referenced so attempting to allocate a new audio player.
    2014-12-12 07:37:24.188 Sample Tests[2254:954926] Loading speech data for Flite concluded successfully.
    2014-12-12 07:37:24.348 Sample Tests[2254:954926] Flite sending suspend recognition notification.
    2014-12-12 07:37:24.349 Sample Tests[2254:954926] Has started speaking
    2014-12-12 07:37:28.883 Sample Tests[2254:954926] AVAudioPlayer did finish playing with success flag of 1
    2014-12-12 07:37:29.034 Sample Tests[2254:954926] Flite sending resume recognition notification.
    2014-12-12 07:37:29.536 Sample Tests[2254:954926] Has finished speaking
    2014-12-12 07:37:29.536 Sample Tests[2254:954926] First time through
    2014-12-12 07:37:29.537 Sample Tests[2254:954926] Attempting to start listening session from startListeningWithLanguageModelAtPath:
    2014-12-12 07:37:29.542 Sample Tests[2254:954926] User gave mic permission for this app.
    2014-12-12 07:37:29.542 Sample Tests[2254:954926] setSecondsOfSilence wasn’t set, using default of 0.700000.
    2014-12-12 07:37:29.543 Sample Tests[2254:954926] Successfully started listening session from startListeningWithLanguageModelAtPath:
    2014-12-12 07:37:29.543 Sample Tests[2254:954951] Starting listening.
    2014-12-12 07:37:29.543 Sample Tests[2254:954951] about to set up audio session
    2014-12-12 07:37:29.800 Sample Tests[2254:955033] Audio route has changed for the following reason:
    2014-12-12 07:37:29.803 Sample Tests[2254:955033] There was a category change. The new category is AVAudioSessionCategoryPlayAndRecord
    2014-12-12 07:37:29.809 Sample Tests[2254:955033] This is not a case in which OpenEars notifies of a route change. At the close of this function, the new audio route is —SpeakerMicrophoneBuiltIn—. The previous route before changing to this route was <AVAudioSessionRouteDescription: 0x174015330,
    inputs = (null);
    outputs = (
    “<AVAudioSessionPortDescription: 0x174015d90, type = Speaker; name = Speaker; UID = Speaker; selectedDataSource = (null)>”
    )>.
    2014-12-12 07:37:29.812 Sample Tests[2254:955033] Audio route has changed for the following reason:
    2014-12-12 07:37:29.822 Sample Tests[2254:955033] There was a category change. The new category is AVAudioSessionCategoryPlayAndRecord
    2014-12-12 07:37:29.827 Sample Tests[2254:954951] done starting audio unit
    2014-12-12 07:37:29.835 Sample Tests[2254:955033] This is not a case in which OpenEars notifies of a route change. At the close of this function, the new audio route is —SpeakerMicrophoneBuiltIn—. The previous route before changing to this route was <AVAudioSessionRouteDescription: 0x174015dd0,
    inputs = (
    “<AVAudioSessionPortDescription: 0x174015d00, type = MicrophoneBuiltIn; name = iPhone Microphone; UID = Built-In Microphone; selectedDataSource = Bottom>”
    );
    outputs = (
    “<AVAudioSessionPortDescription: 0x174015db0, type = Receiver; name = Receiver; UID = Built-In Receiver; selectedDataSource = (null)>”
    )>.
    2014-12-12 07:37:29.907 Sample Tests[2254:954951] There is no CMN plist so we are using the fresh CMN value 42.000000.
    2014-12-12 07:37:29.907 Sample Tests[2254:954951] Listening.
    2014-12-12 07:37:29.908 Sample Tests[2254:954951] Project has these words or phrases in its dictionary:
    EIGHT
    FIVE
    FOUR
    NINE
    ONE
    ONE(2)
    SEVEN
    SIX
    THREE
    TWO
    ZERO
    ZERO(2)
    2014-12-12 07:37:29.908 Sample Tests[2254:954951] Recognition loop has started
    2014-12-12 07:37:29.908 Sample Tests[2254:954926] nextScreenAndGoButton
    2014-12-12 07:37:29.910 Sample Tests[2254:954926] Now listening.
    2014-12-12 07:37:29.910 Sample Tests[2254:954926] Starting up.
    2014-12-12 07:37:30.421 Sample Tests[2254:954951] Speech detected…
    2014-12-12 07:37:30.422 Sample Tests[2254:954926] Pocketsphinx has detected speech.
    2014-12-12 07:37:30.784 Sample Tests[2254:954926] GO tapped
    2014-12-12 07:37:30.785 Sample Tests[2254:954926] Take the test ***
    2014-12-12 07:37:30.786 Sample Tests[2254:954926] start the timer
    2014-12-12 07:37:30.787 Sample Tests[2254:954926] Time in: 1418395050.787164
    2014-12-12 07:37:30.788 Sample Tests[2254:954926] select cell
    2014-12-12 07:37:31.910 Sample Tests[2254:954951] End of speech detected…
    2014-12-12 07:37:31.912 Sample Tests[2254:954926] Pocketsphinx has detected a second of silence, concluding an utterance.
    2014-12-12 07:37:31.938 Sample Tests[2254:954951] Pocketsphinx heard “” with a score of (0) and an utterance ID of 0.
    2014-12-12 07:37:31.939 Sample Tests[2254:954951] Hypothesis was null so we aren’t returning it. If you want null hypotheses to also be returned, set OEPocketsphinxController’s property returnNullHypotheses to TRUE before starting OEPocketsphinxController.
    2014-12-12 07:37:33.968 Sample Tests[2254:954951] Speech detected…
    2014-12-12 07:37:33.969 Sample Tests[2254:954926] Pocketsphinx has detected speech.
    2014-12-12 07:37:36.009 Sample Tests[2254:954951] End of speech detected…
    2014-12-12 07:37:36.010 Sample Tests[2254:954926] Pocketsphinx has detected a second of silence, concluding an utterance.
    2014-12-12 07:37:36.068 Sample Tests[2254:954951] Pocketsphinx heard “SIX” with a score of (0) and an utterance ID of 1.
    2014-12-12 07:37:36.069 Sample Tests[2254:954926] Flite sending interrupt speech request.
    2014-12-12 07:37:36.070 Sample Tests[2254:954926] The received hypothesis is SIX with a score of 0 and an ID of 1
    2014-12-12 07:37:36.070 Sample Tests[2254:954926] it’s a good word
    2014-12-12 07:37:36.071 Sample Tests[2254:954926] from check the: SIX
    2014-12-12 07:37:36.071 Sample Tests[2254:954926] It’s ****A MATCH****
    2014-12-12 07:37:36.072 Sample Tests[2254:954926] Time out: 1418395056.072117
    2014-12-12 07:37:36.072 Sample Tests[2254:954926] Time Interval: 5.284953
    2014-12-12 07:37:36.073 Sample Tests[2254:954926] time stamp: 5.284953
    2014-12-12 07:37:36.073 Sample Tests[2254:954926] array count 1
    2014-12-12 07:37:36.074 Sample Tests[2254:954926] number of tests 1
    2014-12-12 07:37:36.074 Sample Tests[2254:954926] Go Again
    2014-12-12 07:37:36.075 Sample Tests[2254:954926] I’m running flite
    2014-12-12 07:37:36.290 Sample Tests[2254:954926] I’m done running flite and it took 0.214541 seconds
    2014-12-12 07:37:36.290 Sample Tests[2254:954926] Flite audio player was nil when referenced so attempting to allocate a new audio player.
    2014-12-12 07:37:36.291 Sample Tests[2254:954926] Loading speech data for Flite concluded successfully.
    2014-12-12 07:37:36.369 Sample Tests[2254:954926] Flite sending suspend recognition notification.
    2014-12-12 07:37:36.370 Sample Tests[2254:954926] Has started speaking
    2014-12-12 07:37:36.379 Sample Tests[2254:954926] Suspended recognition.
    2014-12-12 07:37:37.767 Sample Tests[2254:954926] AVAudioPlayer did finish playing with success flag of 1
    2014-12-12 07:37:37.919 Sample Tests[2254:954926] Flite sending resume recognition notification.
    2014-12-12 07:37:38.288 Sample Tests[2254:954926] GO tapped
    2014-12-12 07:37:38.289 Sample Tests[2254:954926] Take the test ***
    2014-12-12 07:37:38.289 Sample Tests[2254:954926] start the timer
    2014-12-12 07:37:38.290 Sample Tests[2254:954926] Time in: 1418395058.290209
    2014-12-12 07:37:38.290 Sample Tests[2254:954926] select cell
    2014-12-12 07:37:38.421 Sample Tests[2254:954926] Has finished speaking
    2014-12-12 07:37:38.422 Sample Tests[2254:954926] NOT First time
    2014-12-12 07:37:38.428 Sample Tests[2254:954926] setSecondsOfSilence wasn’t set, using default of 0.700000.
    2014-12-12 07:37:38.428 Sample Tests[2254:954926] Pocketsphinx has resumed recognition.
    2014-12-12 07:37:42.287 Sample Tests[2254:954951] Speech detected…
    2014-12-12 07:37:42.288 Sample Tests[2254:954926] Pocketsphinx has detected speech.
    2014-12-12 07:37:43.815 Sample Tests[2254:954951] End of speech detected…
    2014-12-12 07:37:43.816 Sample Tests[2254:954926] Pocketsphinx has detected a second of silence, concluding an utterance.
    2014-12-12 07:37:43.845 Sample Tests[2254:954951] Pocketsphinx heard “FOUR” with a score of (0) and an utterance ID of 2.
    2014-12-12 07:37:43.847 Sample Tests[2254:954926] Flite sending interrupt speech request.
    2014-12-12 07:37:43.847 Sample Tests[2254:954926] The received hypothesis is FOUR with a score of 0 and an ID of 2
    2014-12-12 07:37:43.848 Sample Tests[2254:954926] it’s a good word
    2014-12-12 07:37:43.848 Sample Tests[2254:954926] from check the: FOUR
    2014-12-12 07:37:43.850 Sample Tests[2254:954926] It’s ****A MATCH****
    2014-12-12 07:37:43.850 Sample Tests[2254:954926] Time out: 1418395063.850507
    2014-12-12 07:37:43.851 Sample Tests[2254:954926] Time Interval: 5.560298
    2014-12-12 07:37:43.851 Sample Tests[2254:954926] time stamp: 5.560298
    2014-12-12 07:37:43.852 Sample Tests[2254:954926] array count 2
    2014-12-12 07:37:43.852 Sample Tests[2254:954926] number of tests 2
    2014-12-12 07:37:43.853 Sample Tests[2254:954926] We are DONE
    2014-12-12 07:37:43.853 Sample Tests[2254:954926] Array count: 2
    2014-12-12 07:37:43.854 Sample Tests[2254:954926] I’m running flite
    2014-12-12 07:37:44.053 Sample Tests[2254:954926] I’m done running flite and it took 0.198407 seconds
    2014-12-12 07:37:44.053 Sample Tests[2254:954926] Flite audio player was nil when referenced so attempting to allocate a new audio player.
    2014-12-12 07:37:44.054 Sample Tests[2254:954926] Loading speech data for Flite concluded successfully.
    2014-12-12 07:37:44.078 Sample Tests[2254:954926] The Times: 2.284953
    2014-12-12 07:37:44.079 Sample Tests[2254:954926] The Times: 2.560298
    2014-12-12 07:37:44.084 Sample Tests[2254:954926] Starting segue
    2014-12-12 07:37:44.097 Sample Tests[2254:954926] summary count: 2
    2014-12-12 07:37:44.098 Sample Tests[2254:954926] The Times in Summary: 2.284953
    2014-12-12 07:37:44.098 Sample Tests[2254:954926] The Times in Summary: 2.560298
    2014-12-12 07:37:44.100 Sample Tests[2254:954926] Flite sending suspend recognition notification.
    2014-12-12 07:37:44.101 Sample Tests[2254:954926] Has started speaking
    2014-12-12 07:37:44.110 Sample Tests[2254:954926] Suspended recognition.
    2014-12-12 07:37:45.381 Sample Tests[2254:954926] AVAudioPlayer did finish playing with success flag of 1
    2014-12-12 07:37:45.533 Sample Tests[2254:954926] Flite sending resume recognition notification.
    2014-12-12 07:37:46.035 Sample Tests[2254:954926] Has finished speaking
    2014-12-12 07:37:46.036 Sample Tests[2254:954926] NOT First time
    2014-12-12 07:37:46.036 Sample Tests[2254:954926] We are finished
    2014-12-12 07:37:46.037 Sample Tests[2254:954926] Stop VR
    2014-12-12 07:37:46.041 Sample Tests[2254:954926] setSecondsOfSilence wasn’t set, using default of 0.700000.
    2014-12-12 07:37:46.893 Sample Tests[2254:955100] Speech detected…
    2014-12-12 07:37:49.858 Sample Tests[2254:954926] View Did Load
    2014-12-12 07:37:49.859 Sample Tests[2254:954926] Starting OpenEars logging for OpenEars version 2.0 on 64-bit device (or build): iPhone running iOS version: 8.100000
    2014-12-12 07:37:49.875 Sample Tests[2254:954926] Starting dynamic language model generation

    2014-12-12 07:37:49.965 Sample Tests[2254:954926] Done creating language model with CMUCLMTK in 0.088851 seconds.
    2014-12-12 07:37:50.089 Sample Tests[2254:954926] I’m done running performDictionaryLookup and it took 0.113343 seconds
    2014-12-12 07:37:50.107 Sample Tests[2254:954926] I’m done running dynamic language model generation and it took 0.246865 seconds
    2014-12-12 07:37:50.112 Sample Tests[2254:954926] view will appear
    2014-12-12 07:37:50.112 Sample Tests[2254:954926] setup Labels and Switches
    2014-12-12 07:37:50.113 Sample Tests[2254:954926] I’m running flite
    2014-12-12 07:37:50.212 Sample Tests[2254:955100] End of speech detected…
    2014-12-12 07:37:50.286 Sample Tests[2254:955100] Pocketsphinx heard “EIGHT” with a score of (37568) and an utterance ID of 3.
    2014-12-12 07:37:50.663 Sample Tests[2254:954926] I’m done running flite and it took 0.549034 seconds
    2014-12-12 07:37:50.664 Sample Tests[2254:954926] Flite audio player was nil when referenced so attempting to allocate a new audio player.
    2014-12-12 07:37:50.664 Sample Tests[2254:954926] Loading speech data for Flite concluded successfully.
    2014-12-12 07:37:50.765 Sample Tests[2254:954926] Set up the test
    2014-12-12 07:37:50.766 Sample Tests[2254:954926] Using: COLOR
    2014-12-12 07:37:50.814 Sample Tests[2254:954926] Pocketsphinx has detected a second of silence, concluding an utterance.
    2014-12-12 07:37:50.815 Sample Tests[2254:954926] Flite sending interrupt speech request.
    2014-12-12 07:37:50.816 Sample Tests[2254:954926] The received hypothesis is EIGHT with a score of 37568 and an ID of 3
    2014-12-12 07:37:50.817 Sample Tests[2254:954926] it’s not a good word
    2014-12-12 07:37:50.817 Sample Tests[2254:954926] I’m running flite
    2014-12-12 07:37:50.991 Sample Tests[2254:954926] I’m done running flite and it took 0.173323 seconds
    2014-12-12 07:37:50.992 Sample Tests[2254:954926] Flite sending suspend recognition notification.
    2014-12-12 07:37:50.992 Sample Tests[2254:954926] Flite sending suspend recognition notification.
    2014-12-12 07:37:50.999 Sample Tests[2254:954926] Has started speaking
    2014-12-12 07:37:51.006 Sample Tests[2254:954926] Has started speaking
    2014-12-12 07:37:51.006 Sample Tests[2254:954926] Suspended recognition.
    2014-12-12 07:37:51.007 Sample Tests[2254:954926] Suspended recognition.
    2014-12-12 07:37:55.877 Sample Tests[2254:954926] AVAudioPlayer did finish playing with success flag of 1
    2014-12-12 07:37:56.029 Sample Tests[2254:954926] Flite sending resume recognition notification.
    2014-12-12 07:37:56.536 Sample Tests[2254:954926] setSecondsOfSilence wasn’t set, using default of 0.700000.
    2014-12-12 07:37:56.537 Sample Tests[2254:954926] Has finished speaking
    2014-12-12 07:37:56.537 Sample Tests[2254:954926] First time in the app
    2014-12-12 07:37:56.537 Sample Tests[2254:954926] Tap anywhere switch is on
    2014-12-12 07:37:56.538 Sample Tests[2254:954926] Pocketsphinx has resumed recognition.
    2014-12-12 07:37:57.376 Sample Tests[2254:955100] Speech detected…
    2014-12-12 07:37:57.377 Sample Tests[2254:954926] Pocketsphinx has detected speech.
    2014-12-12 07:37:57.414 Sample Tests[2254:954926] you tapped begin
    2014-12-12 07:37:57.415 Sample Tests[2254:954926] I’m running flite
    2014-12-12 07:37:57.686 Sample Tests[2254:954926] I’m done running flite and it took 0.270522 seconds
    2014-12-12 07:37:57.687 Sample Tests[2254:954926] Flite audio player was nil when referenced so attempting to allocate a new audio player.
    2014-12-12 07:37:57.687 Sample Tests[2254:954926] Loading speech data for Flite concluded successfully.
    2014-12-12 07:37:57.732 Sample Tests[2254:954926] Taking the test
    2014-12-12 07:37:57.732 Sample Tests[2254:954926] first time through
    2014-12-12 07:37:57.733 Sample Tests[2254:954926] BLUE BLUE
    2014-12-12 07:37:57.733 Sample Tests[2254:954926] put label 1418395077.733870
    2014-12-12 07:37:57.734 Sample Tests[2254:954926] Diff? BLUE BLUE
    2014-12-12 07:37:57.734 Sample Tests[2254:954926] The target match is: RED
    2014-12-12 07:37:57.735 Sample Tests[2254:954926] Test Count: 1
    2014-12-12 07:37:57.746 Sample Tests[2254:954926] Flite sending suspend recognition notification.
    2014-12-12 07:37:57.758 Sample Tests[2254:954926] Has started speaking
    2014-12-12 07:37:57.759 Sample Tests[2254:954926] Suspended recognition.
    2014-12-12 07:37:59.499 Sample Tests[2254:954926] AVAudioPlayer did finish playing with success flag of 1
    2014-12-12 07:37:59.651 Sample Tests[2254:954926] Flite sending resume recognition notification.
    2014-12-12 07:38:00.157 Sample Tests[2254:954926] setSecondsOfSilence wasn’t set, using default of 0.700000.
    2014-12-12 07:38:00.158 Sample Tests[2254:954926] Has finished speaking
    2014-12-12 07:38:00.158 Sample Tests[2254:954926] Pocketsphinx has resumed recognition.
    2014-12-12 07:38:00.463 Sample Tests[2254:955100] Speech detected…
    2014-12-12 07:38:00.465 Sample Tests[2254:954926] Pocketsphinx has detected speech.
    2014-12-12 07:38:01.605 Sample Tests[2254:955100] End of speech detected…
    2014-12-12 07:38:01.606 Sample Tests[2254:954926] Pocketsphinx has detected a second of silence, concluding an utterance.
    2014-12-12 07:38:01.624 Sample Tests[2254:955100] Pocketsphinx heard “EIGHT” with a score of (-64) and an utterance ID of 4.
    2014-12-12 07:38:01.625 Sample Tests[2254:954926] Flite sending interrupt speech request.
    2014-12-12 07:38:01.626 Sample Tests[2254:954926] The received hypothesis is EIGHT with a score of -64 and an ID of 4
    2014-12-12 07:38:01.626 Sample Tests[2254:954926] it’s not a good word
    2014-12-12 07:38:01.627 Sample Tests[2254:954926] I’m running flite
    2014-12-12 07:38:02.043 Sample Tests[2254:954926] I’m done running flite and it took 0.415680 seconds
    2014-12-12 07:38:02.044 Sample Tests[2254:954926] Flite audio player was nil when referenced so attempting to allocate a new audio player.
    2014-12-12 07:38:02.045 Sample Tests[2254:954926] Loading speech data for Flite concluded successfully.
    2014-12-12 07:38:02.097 Sample Tests[2254:954926] Flite sending suspend recognition notification.
    2014-12-12 07:38:02.106 Sample Tests[2254:954926] Has started speaking
    2014-12-12 07:38:02.107 Sample Tests[2254:954926] Suspended recognition.
    2014-12-12 07:38:04.700 Sample Tests[2254:954926] AVAudioPlayer did finish playing with success flag of 1
    2014-12-12 07:38:04.852 Sample Tests[2254:954926] Flite sending resume recognition notification.
    2014-12-12 07:38:05.357 Sample Tests[2254:954926] setSecondsOfSilence wasn’t set, using default of 0.700000.
    2014-12-12 07:38:05.358 Sample Tests[2254:954926] Has finished speaking
    2014-12-12 07:38:05.359 Sample Tests[2254:954926] Pocketsphinx has resumed recognition.
    2014-12-12 07:38:05.580 Sample Tests[2254:955100] Speech detected…
    2014-12-12 07:38:05.581 Sample Tests[2254:954926] Pocketsphinx has detected speech.
    2014-12-12 07:38:06.984 Sample Tests[2254:955100] End of speech detected…
    2014-12-12 07:38:06.985 Sample Tests[2254:954926] Pocketsphinx has detected a second of silence, concluding an utterance.
    2014-12-12 07:38:07.013 Sample Tests[2254:955100] Pocketsphinx heard “EIGHT” with a score of (26880) and an utterance ID of 5.
    2014-12-12 07:38:07.013 Sample Tests[2254:954926] Flite sending interrupt speech request.
    2014-12-12 07:38:07.014 Sample Tests[2254:954926] The received hypothesis is EIGHT with a score of 26880 and an ID of 5
    2014-12-12 07:38:07.015 Sample Tests[2254:954926] it’s not a good word
    2014-12-12 07:38:07.015 Sample Tests[2254:954926] I’m running flite
    2014-12-12 07:38:07.433 Sample Tests[2254:954926] I’m done running flite and it took 0.417500 seconds
    2014-12-12 07:38:07.434 Sample Tests[2254:954926] Flite audio player was nil when referenced so attempting to allocate a new audio player.
    2014-12-12 07:38:07.434 Sample Tests[2254:954926] Loading speech data for Flite concluded successfully.
    2014-12-12 07:38:07.484 Sample Tests[2254:954926] Flite sending suspend recognition notification.
    2014-12-12 07:38:07.494 Sample Tests[2254:954926] Has started speaking
    2014-12-12 07:38:07.495 Sample Tests[2254:954926] Suspended recognition.
    2014-12-12 07:38:10.087 Sample Tests[2254:954926] AVAudioPlayer did finish playing with success flag of 1
    2014-12-12 07:38:10.239 Sample Tests[2254:954926] Flite sending resume recognition notification.
    2014-12-12 07:38:10.746 Sample Tests[2254:954926] setSecondsOfSilence wasn’t set, using default of 0.700000.
    2014-12-12 07:38:10.747 Sample Tests[2254:954926] Has finished speaking
    2014-12-12 07:38:10.747 Sample Tests[2254:954926] Pocketsphinx has resumed recognition.
    2014-12-12 07:38:10.958 Sample Tests[2254:955100] Speech detected…
    2014-12-12 07:38:10.958 Sample Tests[2254:954926] Pocketsphinx has detected speech.
    2014-12-12 07:38:16.200 Sample Tests[2254:955100] End of speech detected…
    2014-12-12 07:38:16.201 Sample Tests[2254:954926] Pocketsphinx has detected a second of silence, concluding an utterance.

    #1023514
    Halle Winkler
    Politepix

    Can you check out the upgrade guide at https://www.politepix.com/upgradeguide and read the part about calling OEPocketsphinxController setActive: before setting OEPocketsphinxController properties? Your call to verbosePocketsphinx isn’t taking effect and that is likely to be the reason for it. Here is what verbosePocketsphinx output looks like:

    https://www.politepix.com/forums/topic/why-jsgf-cant-be-used-in-chinese/#post-1022754

    It has all of the engine settings in it like this:

    -bestpath	yes	yes
    -bestpathlw	9.5	9.500000e+00
    -bghist	no	no
    -ceplen	13	13
    

    not just the OpenEars audio setting information that OELogging delivers.

    #1023515
    boombatz
    Participant

    OK, I’m running these lines in view did load, but i don’t see what you are looking for..

    [[OEPocketsphinxController sharedInstance] setActive:TRUE error:nil];
    [OELogging startOpenEarsLogging];
    self.pocketsphinxController.verbosePocketSphinx = TRUE;

    #1023516
    Halle Winkler
    Politepix

    Can you show how you initialize self.pocketsphinxController?

    #1023517
    boombatz
    Participant

    if(![OEPocketsphinxController sharedInstance].isListening) {
    [[OEPocketsphinxController sharedInstance] startListeningWithLanguageModelAtPath:self.pathToFirstDynamicallyGeneratedLanguageModel dictionaryAtPath:self.pathToFirstDynamicallyGeneratedDictionary acousticModelAtPath:[OEAcousticModel pathToModel:@”AcousticModelEnglish”] languageModelIsJSGF:FALSE]; // Start speech recognition if we aren’t already listening.
    }

    #1023518
    Halle Winkler
    Politepix

    OK, can you read up on what is meant by the term initialization in object-oriented programming? Explaining what object initialization refers to is unfortunately beyond the level of support it’s possible to offer here.

    #1023524
    boombatz
    Participant

    will do

    #1023525
    boombatz
    Participant

    I think I see the problem. Can’t work on it until later this afternoon, but you pointed me in the right direction. I’ll let you know. Thanks.

    #1023528
    boombatz
    Participant

    Hi Halle,
    I think I’ve got it going now. I’m properly initializing and both VC’s are working.
    One other question. I notice in the logs that is shows one of my dictionaries (the one with numbers with multiple entries. See the the log below. the other dictionary with four colors show up correctly. this doesn’t seem to impact the app, but i don’t know why it does it and i’m wondering if it might cause a problem further on.
    Here’s how I set up both arrays and you can see the logs below.
    Thanks for all of your help. I greatly appreciate it.

    NSArray *firstLanguageArray = @[@”ZERO”,
    @”ONE”,
    @”TWO”,
    @”THREE”,
    @”FOUR”,
    @”FIVE”,
    @”SIX”,
    @”SEVEN”,
    @”EIGHT”,
    @“NINE”];

    NSArray *firstLanguageArray = @[@”YELLOW”,
    @”BLUE”,
    @”RED”,
    @”GREEN”,
    nil]];

    2014-12-12 22:00:59.213 Sample Tests[4176:327172] View Did Load
    2014-12-12 22:00:59.214 Sample Tests[4176:327172] Starting OpenEars logging for OpenEars version 2.0 on 64-bit device (or build): iPhone Simulator running iOS version: 8.100000
    2014-12-12 22:00:59.215 Sample Tests[4176:327172] Starting dynamic language model generation

    INFO: cmd_ln.c(702): Parsing command line:
    sphinx_lm_convert \
    -i /Users/marcrsilverman/Library/Developer/CoreSimulator/Devices/B7DE9E45-73D3-4195-BC4F-C43D846C5CF1/data/Containers/Data/Application/D50BFA31-3A15-4674-9A74-563D7EE59C2A/Library/Caches/FirstOpenEarsDynamicLanguageModel.arpa \
    -o /Users/marcrsilverman/Library/Developer/CoreSimulator/Devices/B7DE9E45-73D3-4195-BC4F-C43D846C5CF1/data/Containers/Data/Application/D50BFA31-3A15-4674-9A74-563D7EE59C2A/Library/Caches/FirstOpenEarsDynamicLanguageModel.DMP

    Current configuration:
    [NAME] [DEFLT] [VALUE]
    -case
    -debug 0
    -help no no
    -i /Users/marcrsilverman/Library/Developer/CoreSimulator/Devices/B7DE9E45-73D3-4195-BC4F-C43D846C5CF1/data/Containers/Data/Application/D50BFA31-3A15-4674-9A74-563D7EE59C2A/Library/Caches/FirstOpenEarsDynamicLanguageModel.arpa
    -ienc
    -ifmt
    -logbase 1.0001 1.000100e+00
    -mmap no no
    -o /Users/marcrsilverman/Library/Developer/CoreSimulator/Devices/B7DE9E45-73D3-4195-BC4F-C43D846C5CF1/data/Containers/Data/Application/D50BFA31-3A15-4674-9A74-563D7EE59C2A/Library/Caches/FirstOpenEarsDynamicLanguageModel.DMP
    -oenc utf8 utf8
    -ofmt

    INFO: ngram_model_arpa.c(504): ngrams 1=12, 2=20, 3=10
    INFO: ngram_model_arpa.c(137): Reading unigrams
    INFO: ngram_model_arpa.c(543): 12 = #unigrams created
    INFO: ngram_model_arpa.c(197): Reading bigrams
    INFO: ngram_model_arpa.c(561): 20 = #bigrams created
    INFO: ngram_model_arpa.c(562): 3 = #prob2 entries
    INFO: ngram_model_arpa.c(570): 3 = #bo_wt2 entries
    INFO: ngram_model_arpa.c(294): Reading trigrams
    INFO: ngram_model_arpa.c(583): 10 = #trigrams created
    INFO: ngram_model_arpa.c(584): 2 = #prob3 entries
    INFO: ngram_model_dmp.c(518): Building DMP model…
    INFO: ngram_model_dmp.c(548): 12 = #unigrams created
    INFO: ngram_model_dmp.c(649): 20 = #bigrams created
    INFO: ngram_model_dmp.c(650): 3 = #prob2 entries
    INFO: ngram_model_dmp.c(657): 3 = #bo_wt2 entries
    INFO: ngram_model_dmp.c(661): 10 = #trigrams created
    INFO: ngram_model_dmp.c(662): 2 = #prob3 entries
    2014-12-12 22:00:59.232 Sample Tests[4176:327172] Done creating language model with CMUCLMTK in 0.016964 seconds.
    2014-12-12 22:00:59.254 Sample Tests[4176:327172] I’m done running performDictionaryLookup and it took 0.019541 seconds
    2014-12-12 22:00:59.255 Sample Tests[4176:327172] I’m done running dynamic language model generation and it took 0.040625 seconds
    2014-12-12 22:00:59.258 Sample Tests[4176:327172] view will appear
    2014-12-12 22:00:59.258 Sample Tests[4176:327172] Get started from beginning
    2014-12-12 22:00:59.258 Sample Tests[4176:327172] I’m running flite
    2014-12-12 22:00:59.347 Sample Tests[4176:327172] I’m done running flite and it took 0.088607 seconds
    2014-12-12 22:00:59.347 Sample Tests[4176:327172] Flite audio player was nil when referenced so attempting to allocate a new audio player.
    2014-12-12 22:00:59.347 Sample Tests[4176:327172] Loading speech data for Flite concluded successfully.
    2014-12-12 22:00:59.409 Sample Tests[4176:327172] Flite sending suspend recognition notification.
    2014-12-12 22:00:59.410 Sample Tests[4176:327172] Has started speaking
    2014-12-12 22:01:03.915 Sample Tests[4176:327172] AVAudioPlayer did finish playing with success flag of 1
    2014-12-12 22:01:04.066 Sample Tests[4176:327172] Flite sending resume recognition notification.
    2014-12-12 22:01:04.567 Sample Tests[4176:327172] Has finished speaking
    2014-12-12 22:01:04.567 Sample Tests[4176:327172] First time through
    2014-12-12 22:01:04.567 Sample Tests[4176:327172] Attempting to start listening session from startListeningWithLanguageModelAtPath:
    2014-12-12 22:01:04.567 Sample Tests[4176:327172] User gave mic permission for this app.
    2014-12-12 22:01:04.567 Sample Tests[4176:327172] setSecondsOfSilence wasn’t set, using default of 0.700000.
    2014-12-12 22:01:04.568 Sample Tests[4176:327172] Successfully started listening session from startListeningWithLanguageModelAtPath:
    2014-12-12 22:01:04.568 Sample Tests[4176:327209] Starting listening.
    2014-12-12 22:01:04.568 Sample Tests[4176:327209] about to set up audio session
    2014-12-12 22:01:04.570 Sample Tests[4176:327209] done starting audio unit
    INFO: cmd_ln.c(702): Parsing command line:
    \
    -lm /Users/marcrsilverman/Library/Developer/CoreSimulator/Devices/B7DE9E45-73D3-4195-BC4F-C43D846C5CF1/data/Containers/Data/Application/D50BFA31-3A15-4674-9A74-563D7EE59C2A/Library/Caches/FirstOpenEarsDynamicLanguageModel.DMP \
    -vad_threshold 2.000000 \
    -remove_noise yes \
    -remove_silence yes \
    -bestpath yes \
    -lw 6.500000 \
    -dict /Users/marcrsilverman/Library/Developer/CoreSimulator/Devices/B7DE9E45-73D3-4195-BC4F-C43D846C5CF1/data/Containers/Data/Application/D50BFA31-3A15-4674-9A74-563D7EE59C2A/Library/Caches/FirstOpenEarsDynamicLanguageModel.dic \
    -hmm /Users/marcrsilverman/Library/Developer/CoreSimulator/Devices/B7DE9E45-73D3-4195-BC4F-C43D846C5CF1/data/Containers/Bundle/Application/A22E2A81-F7D4-4A0F-8B4E-1F54E255E91B/Sample Tests.app/AcousticModelEnglish.bundle

    Current configuration:
    [NAME] [DEFLT] [VALUE]
    -agc none none
    -agcthresh 2.0 2.000000e+00
    -allphone
    -allphone_ci no no
    -alpha 0.97 9.700000e-01
    -argfile
    -ascale 20.0 2.000000e+01
    -aw 1 1
    -backtrace no no
    -beam 1e-48 1.000000e-48
    -bestpath yes yes
    -bestpathlw 9.5 9.500000e+00
    -bghist no no
    -ceplen 13 13
    -cmn current current
    -cmninit 8.0 8.0
    -compallsen no no
    -debug 0
    -dict /Users/marcrsilverman/Library/Developer/CoreSimulator/Devices/B7DE9E45-73D3-4195-BC4F-C43D846C5CF1/data/Containers/Data/Application/D50BFA31-3A15-4674-9A74-563D7EE59C2A/Library/Caches/FirstOpenEarsDynamicLanguageModel.dic
    -dictcase no no
    -dither no no
    -doublebw no no
    -ds 1 1
    -fdict
    -feat 1s_c_d_dd 1s_c_d_dd
    -featparams
    -fillprob 1e-8 1.000000e-08
    -frate 100 100
    -fsg
    -fsgusealtpron yes yes
    -fsgusefiller yes yes
    -fwdflat yes yes
    -fwdflatbeam 1e-64 1.000000e-64
    -fwdflatefwid 4 4
    -fwdflatlw 8.5 8.500000e+00
    -fwdflatsfwin 25 25
    -fwdflatwbeam 7e-29 7.000000e-29
    -fwdtree yes yes
    -hmm /Users/marcrsilverman/Library/Developer/CoreSimulator/Devices/B7DE9E45-73D3-4195-BC4F-C43D846C5CF1/data/Containers/Bundle/Application/A22E2A81-F7D4-4A0F-8B4E-1F54E255E91B/Sample Tests.app/AcousticModelEnglish.bundle
    -input_endian little little
    -jsgf
    -kdmaxbbi -1 -1
    -kdmaxdepth 0 0
    -kdtree
    -keyphrase
    -kws
    -kws_plp 1e-1 1.000000e-01
    -kws_threshold 1 1.000000e+00
    -latsize 5000 5000
    -lda
    -ldadim 0 0
    -lextreedump 0 0
    -lifter 0 0
    -lm /Users/marcrsilverman/Library/Developer/CoreSimulator/Devices/B7DE9E45-73D3-4195-BC4F-C43D846C5CF1/data/Containers/Data/Application/D50BFA31-3A15-4674-9A74-563D7EE59C2A/Library/Caches/FirstOpenEarsDynamicLanguageModel.DMP
    -lmctl
    -lmname
    -logbase 1.0001 1.000100e+00
    -logfn
    -logspec no no
    -lowerf 133.33334 1.333333e+02
    -lpbeam 1e-40 1.000000e-40
    -lponlybeam 7e-29 7.000000e-29
    -lw 6.5 6.500000e+00
    -maxhmmpf 10000 10000
    -maxnewoov 20 20
    -maxwpf -1 -1
    -mdef
    -mean
    -mfclogdir
    -min_endfr 0 0
    -mixw
    -mixwfloor 0.0000001 1.000000e-07
    -mllr
    -mmap yes yes
    -ncep 13 13
    -nfft 512 512
    -nfilt 40 40
    -nwpen 1.0 1.000000e+00
    -pbeam 1e-48 1.000000e-48
    -pip 1.0 1.000000e+00
    -pl_beam 1e-10 1.000000e-10
    -pl_pbeam 1e-5 1.000000e-05
    -pl_window 0 0
    -rawlogdir
    -remove_dc no no
    -remove_noise yes yes
    -remove_silence yes yes
    -round_filters yes yes
    -samprate 16000 1.600000e+04
    -seed -1 -1
    -sendump
    -senlogdir
    -senmgau
    -silprob 0.005 5.000000e-03
    -smoothspec no no
    -svspec
    -tmat
    -tmatfloor 0.0001 1.000000e-04
    -topn 4 4
    -topn_beam 0 0
    -toprule
    -transform legacy legacy
    -unit_area yes yes
    -upperf 6855.4976 6.855498e+03
    -usewdphones no no
    -uw 1.0 1.000000e+00
    -vad_postspeech 50 50
    -vad_prespeech 10 10
    -vad_threshold 2.0 2.000000e+00
    -var
    -varfloor 0.0001 1.000000e-04
    -varnorm no no
    -verbose no no
    -warp_params
    -warp_type inverse_linear inverse_linear
    -wbeam 7e-29 7.000000e-29
    -wip 0.65 6.500000e-01
    -wlen 0.025625 2.562500e-02

    INFO: cmd_ln.c(702): Parsing command line:
    \
    -nfilt 25 \
    -lowerf 130 \
    -upperf 6800 \
    -feat 1s_c_d_dd \
    -svspec 0-12/13-25/26-38 \
    -agc none \
    -cmn current \
    -varnorm no \
    -transform dct \
    -lifter 22 \
    -cmninit 40

    Current configuration:
    [NAME] [DEFLT] [VALUE]
    -agc none none
    -agcthresh 2.0 2.000000e+00
    -alpha 0.97 9.700000e-01
    -ceplen 13 13
    -cmn current current
    -cmninit 8.0 40
    -dither no no
    -doublebw no no
    -feat 1s_c_d_dd 1s_c_d_dd
    -frate 100 100
    -input_endian little little
    -lda
    -ldadim 0 0
    -lifter 0 22
    -logspec no no
    -lowerf 133.33334 1.300000e+02
    -ncep 13 13
    -nfft 512 512
    -nfilt 40 25
    -remove_dc no no
    -remove_noise yes yes
    -remove_silence yes yes
    -round_filters yes yes
    -samprate 16000 1.600000e+04
    -seed -1 -1
    -smoothspec no no
    -svspec 0-12/13-25/26-38
    -transform legacy dct
    -unit_area yes yes
    -upperf 6855.4976 6.800000e+03
    -vad_postspeech 50 50
    -vad_prespeech 10 10
    -vad_threshold 2.0 2.000000e+00
    -varnorm no no
    -verbose no no
    -warp_params
    -warp_type inverse_linear inverse_linear
    -wlen 0.025625 2.562500e-02

    INFO: acmod.c(252): Parsed model-specific feature parameters from /Users/marcrsilverman/Library/Developer/CoreSimulator/Devices/B7DE9E45-73D3-4195-BC4F-C43D846C5CF1/data/Containers/Bundle/Application/A22E2A81-F7D4-4A0F-8B4E-1F54E255E91B/Sample Tests.app/AcousticModelEnglish.bundle/feat.params
    INFO: feat.c(715): Initializing feature stream to type: ‘1s_c_d_dd’, ceplen=13, CMN=’current’, VARNORM=’no’, AGC=’none’
    INFO: cmn.c(143): mean[0]= 12.00, mean[1..12]= 0.0
    INFO: acmod.c(171): Using subvector specification 0-12/13-25/26-38
    INFO: mdef.c(518): Reading model definition: /Users/marcrsilverman/Library/Developer/CoreSimulator/Devices/B7DE9E45-73D3-4195-BC4F-C43D846C5CF1/data/Containers/Bundle/Application/A22E2A81-F7D4-4A0F-8B4E-1F54E255E91B/Sample Tests.app/AcousticModelEnglish.bundle/mdef
    INFO: mdef.c(531): Found byte-order mark BMDF, assuming this is a binary mdef file
    INFO: bin_mdef.c(336): Reading binary model definition: /Users/marcrsilverman/Library/Developer/CoreSimulator/Devices/B7DE9E45-73D3-4195-BC4F-C43D846C5CF1/data/Containers/Bundle/Application/A22E2A81-F7D4-4A0F-8B4E-1F54E255E91B/Sample Tests.app/AcousticModelEnglish.bundle/mdef
    INFO: bin_mdef.c(516): 46 CI-phone, 168344 CD-phone, 3 emitstate/phone, 138 CI-sen, 6138 Sen, 32881 Sen-Seq
    INFO: tmat.c(206): Reading HMM transition probability matrices: /Users/marcrsilverman/Library/Developer/CoreSimulator/Devices/B7DE9E45-73D3-4195-BC4F-C43D846C5CF1/data/Containers/Bundle/Application/A22E2A81-F7D4-4A0F-8B4E-1F54E255E91B/Sample Tests.app/AcousticModelEnglish.bundle/transition_matrices
    INFO: acmod.c(124): Attempting to use SCHMM computation module
    INFO: ms_gauden.c(198): Reading mixture gaussian parameter: /Users/marcrsilverman/Library/Developer/CoreSimulator/Devices/B7DE9E45-73D3-4195-BC4F-C43D846C5CF1/data/Containers/Bundle/Application/A22E2A81-F7D4-4A0F-8B4E-1F54E255E91B/Sample Tests.app/AcousticModelEnglish.bundle/means
    INFO: ms_gauden.c(292): 1 codebook, 3 feature, size:
    INFO: ms_gauden.c(294): 512×13
    INFO: ms_gauden.c(294): 512×13
    INFO: ms_gauden.c(294): 512×13
    INFO: ms_gauden.c(198): Reading mixture gaussian parameter: /Users/marcrsilverman/Library/Developer/CoreSimulator/Devices/B7DE9E45-73D3-4195-BC4F-C43D846C5CF1/data/Containers/Bundle/Application/A22E2A81-F7D4-4A0F-8B4E-1F54E255E91B/Sample Tests.app/AcousticModelEnglish.bundle/variances
    INFO: ms_gauden.c(292): 1 codebook, 3 feature, size:
    INFO: ms_gauden.c(294): 512×13
    INFO: ms_gauden.c(294): 512×13
    INFO: ms_gauden.c(294): 512×13
    INFO: ms_gauden.c(354): 0 variance values floored
    INFO: s2_semi_mgau.c(904): Loading senones from dump file /Users/marcrsilverman/Library/Developer/CoreSimulator/Devices/B7DE9E45-73D3-4195-BC4F-C43D846C5CF1/data/Containers/Bundle/Application/A22E2A81-F7D4-4A0F-8B4E-1F54E255E91B/Sample Tests.app/AcousticModelEnglish.bundle/sendump
    INFO: s2_semi_mgau.c(928): BEGIN FILE FORMAT DESCRIPTION
    INFO: s2_semi_mgau.c(991): Rows: 512, Columns: 6138
    INFO: s2_semi_mgau.c(1023): Using memory-mapped I/O for senones
    INFO: s2_semi_mgau.c(1294): Maximum top-N: 4 Top-N beams: 0 0 0
    INFO: dict.c(320): Allocating 4117 * 32 bytes (128 KiB) for word entries
    INFO: dict.c(333): Reading main dictionary: /Users/marcrsilverman/Library/Developer/CoreSimulator/Devices/B7DE9E45-73D3-4195-BC4F-C43D846C5CF1/data/Containers/Data/Application/D50BFA31-3A15-4674-9A74-563D7EE59C2A/Library/Caches/FirstOpenEarsDynamicLanguageModel.dic
    INFO: dict.c(213): Allocated 0 KiB for strings, 0 KiB for phones
    INFO: dict.c(336): 12 words read
    INFO: dict.c(342): Reading filler dictionary: /Users/marcrsilverman/Library/Developer/CoreSimulator/Devices/B7DE9E45-73D3-4195-BC4F-C43D846C5CF1/data/Containers/Bundle/Application/A22E2A81-F7D4-4A0F-8B4E-1F54E255E91B/Sample Tests.app/AcousticModelEnglish.bundle/noisedict
    INFO: dict.c(213): Allocated 0 KiB for strings, 0 KiB for phones
    INFO: dict.c(345): 9 words read
    INFO: dict2pid.c(396): Building PID tables for dictionary
    INFO: dict2pid.c(406): Allocating 46^3 * 2 bytes (190 KiB) for word-initial triphones
    INFO: dict2pid.c(132): Allocated 51152 bytes (49 KiB) for word-final triphones
    INFO: dict2pid.c(196): Allocated 51152 bytes (49 KiB) for single-phone word triphones
    INFO: ngram_model_arpa.c(79): No \data\ mark in LM file
    INFO: ngram_model_dmp.c(166): Will use memory-mapped I/O for LM file
    INFO: ngram_model_dmp.c(220): ngrams 1=12, 2=20, 3=10
    INFO: ngram_model_dmp.c(266): 12 = LM.unigrams(+trailer) read
    INFO: ngram_model_dmp.c(312): 20 = LM.bigrams(+trailer) read
    INFO: ngram_model_dmp.c(338): 10 = LM.trigrams read
    INFO: ngram_model_dmp.c(363): 3 = LM.prob2 entries read
    INFO: ngram_model_dmp.c(383): 3 = LM.bo_wt2 entries read
    INFO: ngram_model_dmp.c(403): 2 = LM.prob3 entries read
    INFO: ngram_model_dmp.c(431): 1 = LM.tseg_base entries read
    INFO: ngram_model_dmp.c(487): 12 = ascii word strings read
    INFO: ngram_search_fwdtree.c(99): 12 unique initial diphones
    INFO: ngram_search_fwdtree.c(148): 0 root, 0 non-root channels, 10 single-phone words
    INFO: ngram_search_fwdtree.c(186): Creating search tree
    INFO: ngram_search_fwdtree.c(192): before: 0 root, 0 non-root channels, 10 single-phone words
    INFO: ngram_search_fwdtree.c(326): after: max nonroot chan increased to 144
    INFO: ngram_search_fwdtree.c(339): after: 12 root, 16 non-root channels, 9 single-phone words
    INFO: ngram_search_fwdflat.c(157): fwdflat: min_ef_width = 4, max_sf_win = 25
    2014-12-12 22:01:04.584 Sample Tests[4176:327209] Restoring SmartCMN value of 22.762207
    2014-12-12 22:01:04.584 Sample Tests[4176:327209] Listening.
    2014-12-12 22:01:04.584 Sample Tests[4176:327209] Project has these words or phrases in its dictionary:
    EIGHT
    FIVE
    FOUR
    NINE
    ONE
    ONE(2)
    SEVEN
    SIX
    THREE
    TWO
    ZERO
    ZERO(2)
    2014-12-12 22:01:04.584 Sample Tests[4176:327209] Recognition loop has started
    2014-12-12 22:01:04.585 Sample Tests[4176:327172] nextScreenAndGoButton
    2014-12-12 22:01:04.585 Sample Tests[4176:327172] Now listening.
    2014-12-12 22:01:04.585 Sample Tests[4176:327172] Starting up.
    2014-12-12 22:01:05.842 Sample Tests[4176:327172] GO tapped
    2014-12-12 22:01:05.842 Sample Tests[4176:327172] Take the test ***
    2014-12-12 22:01:05.842 Sample Tests[4176:327172] start the timer
    2014-12-12 22:01:05.842 Sample Tests[4176:327172] Time in: 1418446865.842678
    2014-12-12 22:01:05.842 Sample Tests[4176:327172] select cell
    2014-12-12 22:01:08.342 Sample Tests[4176:327209] Speech detected…
    2014-12-12 22:01:08.343 Sample Tests[4176:327172] Pocketsphinx has detected speech.
    2014-12-12 22:01:10.644 Sample Tests[4176:327207] End of speech detected…
    INFO: cmn_prior.c(131): cmn_prior_update: from < 22.76 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 >
    INFO: cmn_prior.c(149): cmn_prior_update: to < 24.96 -11.60 9.82 13.78 -5.64 -5.43 -13.22 1.31 -2.41 -10.09 -0.91 1.40 1.26 >
    INFO: ngram_search_fwdtree.c(1550): 1621 words recognized (9/fr)
    INFO: ngram_search_fwdtree.c(1552): 28049 senones evaluated (152/fr)
    INFO: ngram_search_fwdtree.c(1556): 13721 channels searched (74/fr), 2160 1st, 9069 last
    INFO: ngram_search_fwdtree.c(1559): 1777 words for which last channels evaluated (9/fr)
    INFO: ngram_search_fwdtree.c(1561): 819 candidate words for entering last phone (4/fr)
    INFO: ngram_search_fwdtree.c(1564): fwdtree 0.11 CPU 0.060 xRT
    INFO: ngram_search_fwdtree.c(1567): fwdtree 5.89 wall 3.202 xRT
    INFO: ngram_search_fwdflat.c(302): Utterance vocabulary contains 4 words
    2014-12-12 22:01:10.644 Sample Tests[4176:327172] Pocketsphinx has detected a second of silence, concluding an utterance.
    INFO: ngram_search_fwdflat.c(938): 1392 words recognized (8/fr)
    INFO: ngram_search_fwdflat.c(940): 20489 senones evaluated (111/fr)
    INFO: ngram_search_fwdflat.c(942): 10593 channels searched (57/fr)
    INFO: ngram_search_fwdflat.c(944): 1705 words searched (9/fr)
    INFO: ngram_search_fwdflat.c(947): 311 word transitions (1/fr)
    INFO: ngram_search_fwdflat.c(950): fwdflat 0.01 CPU 0.004 xRT
    INFO: ngram_search_fwdflat.c(953): fwdflat 0.01 wall 0.004 xRT
    INFO: ngram_search.c(1268): lattice start node <s>.0 end node </s>.181
    INFO: ngram_search.c(1294): Eliminated 5 nodes before end node
    INFO: ngram_search.c(1399): Lattice has 663 nodes, 4240 links
    INFO: ps_lattice.c(1368): Normalizer P(O) = alpha(</s>:181:182) = -1286021
    INFO: ps_lattice.c(1403): Joint P(O,S) = -1286415 P(S|O) = -394
    INFO: ngram_search.c(890): bestpath 0.00 CPU 0.002 xRT
    INFO: ngram_search.c(893): bestpath 0.00 wall 0.002 xRT
    2014-12-12 22:01:10.655 Sample Tests[4176:327207] Pocketsphinx heard “EIGHT” with a score of (-394) and an utterance ID of 0.
    2014-12-12 22:01:10.655 Sample Tests[4176:327172] Flite sending interrupt speech request.
    2014-12-12 22:01:10.656 Sample Tests[4176:327172] The received hypothesis is EIGHT with a score of -394 and an ID of 0
    2014-12-12 22:01:10.656 Sample Tests[4176:327172] it’s a good word
    2014-12-12 22:01:10.656 Sample Tests[4176:327172] from check the: EIGHT
    2014-12-12 22:01:10.656 Sample Tests[4176:327172] It’s ****A MATCH****
    2014-12-12 22:01:10.656 Sample Tests[4176:327172] Time out: 1418446870.656449
    2014-12-12 22:01:10.656 Sample Tests[4176:327172] Time Interval: 4.813771
    2014-12-12 22:01:10.656 Sample Tests[4176:327172] time stamp: 4.813771
    2014-12-12 22:01:10.656 Sample Tests[4176:327172] array count 1
    2014-12-12 22:01:10.656 Sample Tests[4176:327172] number of tests 1
    2014-12-12 22:01:10.656 Sample Tests[4176:327172] Go Again
    2014-12-12 22:01:10.656 Sample Tests[4176:327172] I’m running flite
    2014-12-12 22:01:10.681 Sample Tests[4176:327172] I’m done running flite and it took 0.024111 seconds
    2014-12-12 22:01:10.681 Sample Tests[4176:327172] Flite audio player was nil when referenced so attempting to allocate a new audio player.
    2014-12-12 22:01:10.681 Sample Tests[4176:327172] Loading speech data for Flite concluded successfully.
    2014-12-12 22:01:10.695 Sample Tests[4176:327172] Flite sending suspend recognition notification.
    2014-12-12 22:01:10.695 Sample Tests[4176:327172] Has started speaking
    2014-12-12 22:01:10.695 Sample Tests[4176:327172] Suspended recognition.
    2014-12-12 22:01:11.949 Sample Tests[4176:327172] GO tapped
    2014-12-12 22:01:11.949 Sample Tests[4176:327172] Take the test ***
    2014-12-12 22:01:11.949 Sample Tests[4176:327172] start the timer
    2014-12-12 22:01:11.949 Sample Tests[4176:327172] Time in: 1418446871.949656
    2014-12-12 22:01:11.949 Sample Tests[4176:327172] select cell
    2014-12-12 22:01:12.041 Sample Tests[4176:327172] AVAudioPlayer did finish playing with success flag of 1
    2014-12-12 22:01:12.192 Sample Tests[4176:327172] Flite sending resume recognition notification.
    2014-12-12 22:01:12.693 Sample Tests[4176:327172] setSecondsOfSilence wasn’t set, using default of 0.700000.
    2014-12-12 22:01:12.693 Sample Tests[4176:327172] Has finished speaking
    2014-12-12 22:01:12.693 Sample Tests[4176:327172] NOT First time
    2014-12-12 22:01:12.693 Sample Tests[4176:327172] Pocketsphinx has resumed recognition.
    INFO: cmn_prior.c(131): cmn_prior_update: from < 24.96 -11.60 9.82 13.78 -5.64 -5.43 -13.22 1.31 -2.41 -10.09 -0.91 1.40 1.26 >
    INFO: cmn_prior.c(149): cmn_prior_update: to < 24.96 -11.60 9.82 13.78 -5.64 -5.43 -13.22 1.31 -2.41 -10.09 -0.91 1.40 1.26 >
    INFO: ngram_search_fwdflat.c(302): Utterance vocabulary contains 0 words
    2014-12-12 22:01:15.381 Sample Tests[4176:327207] Speech detected…
    2014-12-12 22:01:15.381 Sample Tests[4176:327172] Pocketsphinx has detected speech.
    2014-12-12 22:01:17.045 Sample Tests[4176:327207] End of speech detected…
    INFO: cmn_prior.c(131): cmn_prior_update: from < 24.96 -11.60 9.82 13.78 -5.64 -5.43 -13.22 1.31 -2.41 -10.09 -0.91 1.40 1.26 >
    INFO: cmn_prior.c(149): cmn_prior_update: to < 29.77 -2.23 4.52 4.51 -8.47 -2.95 -12.06 -6.30 -3.02 -10.97 -1.10 3.81 2.06 >
    INFO: ngram_search_fwdtree.c(1550): 900 words recognized (8/fr)
    INFO: ngram_search_fwdtree.c(1552): 19386 senones evaluated (175/fr)
    INFO: ngram_search_fwdtree.c(1556): 9857 channels searched (88/fr), 1261 1st, 7255 last
    INFO: ngram_search_fwdtree.c(1559): 1147 words for which last channels evaluated (10/fr)
    INFO: ngram_search_fwdtree.c(1561): 532 candidate words for entering last phone (4/fr)
    INFO: ngram_search_fwdtree.c(1564): fwdtree 0.08 CPU 0.069 xRT
    INFO: ngram_search_fwdtree.c(1567): fwdtree 4.22 wall 3.806 xRT
    2014-12-12 22:01:17.046 Sample Tests[4176:327172] Pocketsphinx has detected a second of silence, concluding an utterance.
    INFO: ngram_search_fwdflat.c(302): Utterance vocabulary contains 7 words
    INFO: ngram_search_fwdflat.c(938): 777 words recognized (7/fr)
    INFO: ngram_search_fwdflat.c(940): 17839 senones evaluated (161/fr)
    INFO: ngram_search_fwdflat.c(942): 10523 channels searched (94/fr)
    INFO: ngram_search_fwdflat.c(944): 1224 words searched (11/fr)
    INFO: ngram_search_fwdflat.c(947): 267 word transitions (2/fr)
    INFO: ngram_search_fwdflat.c(950): fwdflat 0.01 CPU 0.006 xRT
    INFO: ngram_search_fwdflat.c(953): fwdflat 0.01 wall 0.006 xRT
    INFO: ngram_search.c(1215): </s> not found in last frame, using <sil>.109 instead
    INFO: ngram_search.c(1268): lattice start node <s>.0 end node <sil>.77
    INFO: ngram_search.c(1294): Eliminated 73 nodes before end node
    INFO: ngram_search.c(1399): Lattice has 230 nodes, 257 links
    INFO: ps_lattice.c(1368): Normalizer P(O) = alpha(<sil>:77:109) = -832760
    INFO: ps_lattice.c(1403): Joint P(O,S) = -832783 P(S|O) = -23
    INFO: ngram_search.c(890): bestpath 0.00 CPU 0.000 xRT
    INFO: ngram_search.c(893): bestpath 0.00 wall 0.000 xRT
    2014-12-12 22:01:17.053 Sample Tests[4176:327207] Pocketsphinx heard “FOUR” with a score of (-23) and an utterance ID of 1.
    2014-12-12 22:01:17.053 Sample Tests[4176:327172] Flite sending interrupt speech request.
    2014-12-12 22:01:17.054 Sample Tests[4176:327172] The received hypothesis is FOUR with a score of -23 and an ID of 1
    2014-12-12 22:01:17.054 Sample Tests[4176:327172] it’s a good word
    2014-12-12 22:01:17.054 Sample Tests[4176:327172] from check the: FOUR
    2014-12-12 22:01:17.054 Sample Tests[4176:327172] It’s ****A MATCH****
    2014-12-12 22:01:17.054 Sample Tests[4176:327172] Time out: 1418446877.054401
    2014-12-12 22:01:17.054 Sample Tests[4176:327172] Time Interval: 5.104745
    2014-12-12 22:01:17.054 Sample Tests[4176:327172] time stamp: 5.104745
    2014-12-12 22:01:17.054 Sample Tests[4176:327172] array count 2
    2014-12-12 22:01:17.054 Sample Tests[4176:327172] number of tests 2
    2014-12-12 22:01:17.054 Sample Tests[4176:327172] We are DONE
    2014-12-12 22:01:17.054 Sample Tests[4176:327172] Array count: 2
    2014-12-12 22:01:17.055 Sample Tests[4176:327172] I’m running flite
    2014-12-12 22:01:17.077 Sample Tests[4176:327172] I’m done running flite and it took 0.022347 seconds
    2014-12-12 22:01:17.077 Sample Tests[4176:327172] Flite audio player was nil when referenced so attempting to allocate a new audio player.
    2014-12-12 22:01:17.077 Sample Tests[4176:327172] Loading speech data for Flite concluded successfully.
    2014-12-12 22:01:17.092 Sample Tests[4176:327172] The Times: 1.813771
    2014-12-12 22:01:17.092 Sample Tests[4176:327172] The Times: 2.104745
    2014-12-12 22:01:17.093 Sample Tests[4176:327172] Starting segue
    2014-12-12 22:01:17.096 Sample Tests[4176:327172] summary count: 2
    2014-12-12 22:01:17.096 Sample Tests[4176:327172] The Times in Summary: 1.813771
    2014-12-12 22:01:17.096 Sample Tests[4176:327172] The Times in Summary: 2.104745
    2014-12-12 22:01:17.096 Sample Tests[4176:327172] Flite sending suspend recognition notification.
    2014-12-12 22:01:17.096 Sample Tests[4176:327172] Has started speaking
    2014-12-12 22:01:17.097 Sample Tests[4176:327172] Suspended recognition.
    2014-12-12 22:01:18.311 Sample Tests[4176:327172] AVAudioPlayer did finish playing with success flag of 1
    2014-12-12 22:01:18.462 Sample Tests[4176:327172] Flite sending resume recognition notification.
    2014-12-12 22:01:18.962 Sample Tests[4176:327172] setSecondsOfSilence wasn’t set, using default of 0.700000.
    2014-12-12 22:01:18.963 Sample Tests[4176:327172] Has finished speaking
    2014-12-12 22:01:18.963 Sample Tests[4176:327172] NOT First time
    2014-12-12 22:01:18.963 Sample Tests[4176:327172] We are finished
    2014-12-12 22:01:18.963 Sample Tests[4176:327172] Stop VR
    2014-12-12 22:01:18.963 Sample Tests[4176:327172] Stopping listening.
    INFO: ngram_search_fwdtree.c(432): TOTAL fwdtree 0.24 CPU 0.083 xRT
    INFO: ngram_search_fwdtree.c(435): TOTAL fwdtree 12.28 wall 4.192 xRT
    INFO: ngram_search_fwdflat.c(176): TOTAL fwdflat 0.02 CPU 0.005 xRT
    INFO: ngram_search_fwdflat.c(179): TOTAL fwdflat 0.01 wall 0.005 xRT
    INFO: ngram_search.c(307): TOTAL bestpath 0.00 CPU 0.001 xRT
    INFO: ngram_search.c(310): TOTAL bestpath 0.00 wall 0.001 xRT
    2014-12-12 22:01:18.979 Sample Tests[4176:327172] No longer listening.
    2014-12-12 22:01:20.511 Sample Tests[4176:327172] View Did Load
    2014-12-12 22:01:20.511 Sample Tests[4176:327172] Starting OpenEars logging for OpenEars version 2.0 on 64-bit device (or build): iPhone Simulator running iOS version: 8.100000
    2014-12-12 22:01:20.515 Sample Tests[4176:327172] Starting dynamic language model generation

    INFO: cmd_ln.c(702): Parsing command line:
    sphinx_lm_convert \
    -i /Users/marcrsilverman/Library/Developer/CoreSimulator/Devices/B7DE9E45-73D3-4195-BC4F-C43D846C5CF1/data/Containers/Data/Application/D50BFA31-3A15-4674-9A74-563D7EE59C2A/Library/Caches/FirstOpenEarsDynamicLanguageModel.arpa \
    -o /Users/marcrsilverman/Library/Developer/CoreSimulator/Devices/B7DE9E45-73D3-4195-BC4F-C43D846C5CF1/data/Containers/Data/Application/D50BFA31-3A15-4674-9A74-563D7EE59C2A/Library/Caches/FirstOpenEarsDynamicLanguageModel.DMP

    Current configuration:
    [NAME] [DEFLT] [VALUE]
    -case
    -debug 0
    -help no no
    -i /Users/marcrsilverman/Library/Developer/CoreSimulator/Devices/B7DE9E45-73D3-4195-BC4F-C43D846C5CF1/data/Containers/Data/Application/D50BFA31-3A15-4674-9A74-563D7EE59C2A/Library/Caches/FirstOpenEarsDynamicLanguageModel.arpa
    -ienc
    -ifmt
    -logbase 1.0001 1.000100e+00
    -mmap no no
    -o /Users/marcrsilverman/Library/Developer/CoreSimulator/Devices/B7DE9E45-73D3-4195-BC4F-C43D846C5CF1/data/Containers/Data/Application/D50BFA31-3A15-4674-9A74-563D7EE59C2A/Library/Caches/FirstOpenEarsDynamicLanguageModel.DMP
    -oenc utf8 utf8
    -ofmt

    INFO: ngram_model_arpa.c(504): ngrams 1=6, 2=8, 3=4
    INFO: ngram_model_arpa.c(137): Reading unigrams
    INFO: ngram_model_arpa.c(543): 6 = #unigrams created
    INFO: ngram_model_arpa.c(197): Reading bigrams
    INFO: ngram_model_arpa.c(561): 8 = #bigrams created
    INFO: ngram_model_arpa.c(562): 3 = #prob2 entries
    INFO: ngram_model_arpa.c(570): 3 = #bo_wt2 entries
    INFO: ngram_model_arpa.c(294): Reading trigrams
    INFO: ngram_model_arpa.c(583): 4 = #trigrams created
    INFO: ngram_model_arpa.c(584): 2 = #prob3 entries
    INFO: ngram_model_dmp.c(518): Building DMP model…
    INFO: ngram_model_dmp.c(548): 6 = #unigrams created
    INFO: ngram_model_dmp.c(649): 8 = #bigrams created
    INFO: ngram_model_dmp.c(650): 3 = #prob2 entries
    INFO: ngram_model_dmp.c(657): 3 = #bo_wt2 entries
    INFO: ngram_model_dmp.c(661): 4 = #trigrams created
    INFO: ngram_model_dmp.c(662): 2 = #prob3 entries
    2014-12-12 22:01:20.524 Sample Tests[4176:327172] Done creating language model with CMUCLMTK in 0.008263 seconds.
    2014-12-12 22:01:20.544 Sample Tests[4176:327172] I’m done running performDictionaryLookup and it took 0.019302 seconds
    2014-12-12 22:01:20.545 Sample Tests[4176:327172] I’m done running dynamic language model generation and it took 0.031573 seconds
    2014-12-12 22:01:20.547 Sample Tests[4176:327172] view will appear
    2014-12-12 22:01:20.547 Sample Tests[4176:327172] setup Labels and Switches
    2014-12-12 22:01:20.548 Sample Tests[4176:327172] I’m running flite
    2014-12-12 22:01:20.645 Sample Tests[4176:327172] I’m done running flite and it took 0.097242 seconds
    2014-12-12 22:01:20.645 Sample Tests[4176:327172] Flite audio player was nil when referenced so attempting to allocate a new audio player.
    2014-12-12 22:01:20.645 Sample Tests[4176:327172] Loading speech data for Flite concluded successfully.
    2014-12-12 22:01:20.656 Sample Tests[4176:327172] Set up the test
    2014-12-12 22:01:20.656 Sample Tests[4176:327172] Using: WORD
    2014-12-12 22:01:20.666 Sample Tests[4176:327172] Flite sending suspend recognition notification.
    2014-12-12 22:01:20.667 Sample Tests[4176:327172] Has started speaking
    2014-12-12 22:01:25.613 Sample Tests[4176:327172] AVAudioPlayer did finish playing with success flag of 1
    2014-12-12 22:01:25.764 Sample Tests[4176:327172] Flite sending resume recognition notification.
    2014-12-12 22:01:26.266 Sample Tests[4176:327172] Has finished speaking
    2014-12-12 22:01:26.266 Sample Tests[4176:327172] First time in the app
    2014-12-12 22:01:26.266 Sample Tests[4176:327172] Tap anywhere switch is on
    2014-12-12 22:01:26.266 Sample Tests[4176:327172] Attempting to start listening session from startListeningWithLanguageModelAtPath:
    2014-12-12 22:01:26.267 Sample Tests[4176:327172] User gave mic permission for this app.
    2014-12-12 22:01:26.267 Sample Tests[4176:327172] setSecondsOfSilence wasn’t set, using default of 0.700000.
    2014-12-12 22:01:26.267 Sample Tests[4176:327172] Successfully started listening session from startListeningWithLanguageModelAtPath:
    2014-12-12 22:01:26.267 Sample Tests[4176:327207] Starting listening.
    2014-12-12 22:01:26.267 Sample Tests[4176:327207] about to set up audio session
    2014-12-12 22:01:26.269 Sample Tests[4176:327207] done starting audio unit
    INFO: cmd_ln.c(702): Parsing command line:
    \
    -lm /Users/marcrsilverman/Library/Developer/CoreSimulator/Devices/B7DE9E45-73D3-4195-BC4F-C43D846C5CF1/data/Containers/Data/Application/D50BFA31-3A15-4674-9A74-563D7EE59C2A/Library/Caches/FirstOpenEarsDynamicLanguageModel.DMP \
    -vad_threshold 2.000000 \
    -remove_noise yes \
    -remove_silence yes \
    -bestpath yes \
    -lw 6.500000 \
    -dict /Users/marcrsilverman/Library/Developer/CoreSimulator/Devices/B7DE9E45-73D3-4195-BC4F-C43D846C5CF1/data/Containers/Data/Application/D50BFA31-3A15-4674-9A74-563D7EE59C2A/Library/Caches/FirstOpenEarsDynamicLanguageModel.dic \
    -hmm /Users/marcrsilverman/Library/Developer/CoreSimulator/Devices/B7DE9E45-73D3-4195-BC4F-C43D846C5CF1/data/Containers/Bundle/Application/A22E2A81-F7D4-4A0F-8B4E-1F54E255E91B/Sample Tests.app/AcousticModelEnglish.bundle

    Current configuration:
    [NAME] [DEFLT] [VALUE]
    -agc none none
    -agcthresh 2.0 2.000000e+00
    -allphone
    -allphone_ci no no
    -alpha 0.97 9.700000e-01
    -argfile
    -ascale 20.0 2.000000e+01
    -aw 1 1
    -backtrace no no
    -beam 1e-48 1.000000e-48
    -bestpath yes yes
    -bestpathlw 9.5 9.500000e+00
    -bghist no no
    -ceplen 13 13
    -cmn current current
    -cmninit 8.0 8.0
    -compallsen no no
    -debug 0
    -dict /Users/marcrsilverman/Library/Developer/CoreSimulator/Devices/B7DE9E45-73D3-4195-BC4F-C43D846C5CF1/data/Containers/Data/Application/D50BFA31-3A15-4674-9A74-563D7EE59C2A/Library/Caches/FirstOpenEarsDynamicLanguageModel.dic
    -dictcase no no
    -dither no no
    -doublebw no no
    -ds 1 1
    -fdict
    -feat 1s_c_d_dd 1s_c_d_dd
    -featparams
    -fillprob 1e-8 1.000000e-08
    -frate 100 100
    -fsg
    -fsgusealtpron yes yes
    -fsgusefiller yes yes
    -fwdflat yes yes
    -fwdflatbeam 1e-64 1.000000e-64
    -fwdflatefwid 4 4
    -fwdflatlw 8.5 8.500000e+00
    -fwdflatsfwin 25 25
    -fwdflatwbeam 7e-29 7.000000e-29
    -fwdtree yes yes
    -hmm /Users/marcrsilverman/Library/Developer/CoreSimulator/Devices/B7DE9E45-73D3-4195-BC4F-C43D846C5CF1/data/Containers/Bundle/Application/A22E2A81-F7D4-4A0F-8B4E-1F54E255E91B/Sample Tests.app/AcousticModelEnglish.bundle
    -input_endian little little
    -jsgf
    -kdmaxbbi -1 -1
    -kdmaxdepth 0 0
    -kdtree
    -keyphrase
    -kws
    -kws_plp 1e-1 1.000000e-01
    -kws_threshold 1 1.000000e+00
    -latsize 5000 5000
    -lda
    -ldadim 0 0
    -lextreedump 0 0
    -lifter 0 0
    -lm /Users/marcrsilverman/Library/Developer/CoreSimulator/Devices/B7DE9E45-73D3-4195-BC4F-C43D846C5CF1/data/Containers/Data/Application/D50BFA31-3A15-4674-9A74-563D7EE59C2A/Library/Caches/FirstOpenEarsDynamicLanguageModel.DMP
    -lmctl
    -lmname
    -logbase 1.0001 1.000100e+00
    -logfn
    -logspec no no
    -lowerf 133.33334 1.333333e+02
    -lpbeam 1e-40 1.000000e-40
    -lponlybeam 7e-29 7.000000e-29
    -lw 6.5 6.500000e+00
    -maxhmmpf 10000 10000
    -maxnewoov 20 20
    -maxwpf -1 -1
    -mdef
    -mean
    -mfclogdir
    -min_endfr 0 0
    -mixw
    -mixwfloor 0.0000001 1.000000e-07
    -mllr
    -mmap yes yes
    -ncep 13 13
    -nfft 512 512
    -nfilt 40 40
    -nwpen 1.0 1.000000e+00
    -pbeam 1e-48 1.000000e-48
    -pip 1.0 1.000000e+00
    -pl_beam 1e-10 1.000000e-10
    -pl_pbeam 1e-5 1.000000e-05
    -pl_window 0 0
    -rawlogdir
    -remove_dc no no
    -remove_noise yes yes
    -remove_silence yes yes
    -round_filters yes yes
    -samprate 16000 1.600000e+04
    -seed -1 -1
    -sendump
    -senlogdir
    -senmgau
    -silprob 0.005 5.000000e-03
    -smoothspec no no
    -svspec
    -tmat
    -tmatfloor 0.0001 1.000000e-04
    -topn 4 4
    -topn_beam 0 0
    -toprule
    -transform legacy legacy
    -unit_area yes yes
    -upperf 6855.4976 6.855498e+03
    -usewdphones no no
    -uw 1.0 1.000000e+00
    -vad_postspeech 50 50
    -vad_prespeech 10 10
    -vad_threshold 2.0 2.000000e+00
    -var
    -varfloor 0.0001 1.000000e-04
    -varnorm no no
    -verbose no no
    -warp_params
    -warp_type inverse_linear inverse_linear
    -wbeam 7e-29 7.000000e-29
    -wip 0.65 6.500000e-01
    -wlen 0.025625 2.562500e-02

    INFO: cmd_ln.c(702): Parsing command line:
    \
    -nfilt 25 \
    -lowerf 130 \
    -upperf 6800 \
    -feat 1s_c_d_dd \
    -svspec 0-12/13-25/26-38 \
    -agc none \
    -cmn current \
    -varnorm no \
    -transform dct \
    -lifter 22 \
    -cmninit 40

    Current configuration:
    [NAME] [DEFLT] [VALUE]
    -agc none none
    -agcthresh 2.0 2.000000e+00
    -alpha 0.97 9.700000e-01
    -ceplen 13 13
    -cmn current current
    -cmninit 8.0 40
    -dither no no
    -doublebw no no
    -feat 1s_c_d_dd 1s_c_d_dd
    -frate 100 100
    -input_endian little little
    -lda
    -ldadim 0 0
    -lifter 0 22
    -logspec no no
    -lowerf 133.33334 1.300000e+02
    -ncep 13 13
    -nfft 512 512
    -nfilt 40 25
    -remove_dc no no
    -remove_noise yes yes
    -remove_silence yes yes
    -round_filters yes yes
    -samprate 16000 1.600000e+04
    -seed -1 -1
    -smoothspec no no
    -svspec 0-12/13-25/26-38
    -transform legacy dct
    -unit_area yes yes
    -upperf 6855.4976 6.800000e+03
    -vad_postspeech 50 50
    -vad_prespeech 10 10
    -vad_threshold 2.0 2.000000e+00
    -varnorm no no
    -verbose no no
    -warp_params
    -warp_type inverse_linear inverse_linear
    -wlen 0.025625 2.562500e-02

    INFO: acmod.c(252): Parsed model-specific feature parameters from /Users/marcrsilverman/Library/Developer/CoreSimulator/Devices/B7DE9E45-73D3-4195-BC4F-C43D846C5CF1/data/Containers/Bundle/Application/A22E2A81-F7D4-4A0F-8B4E-1F54E255E91B/Sample Tests.app/AcousticModelEnglish.bundle/feat.params
    INFO: feat.c(715): Initializing feature stream to type: ‘1s_c_d_dd’, ceplen=13, CMN=’current’, VARNORM=’no’, AGC=’none’
    INFO: cmn.c(143): mean[0]= 12.00, mean[1..12]= 0.0
    INFO: acmod.c(171): Using subvector specification 0-12/13-25/26-38
    INFO: mdef.c(518): Reading model definition: /Users/marcrsilverman/Library/Developer/CoreSimulator/Devices/B7DE9E45-73D3-4195-BC4F-C43D846C5CF1/data/Containers/Bundle/Application/A22E2A81-F7D4-4A0F-8B4E-1F54E255E91B/Sample Tests.app/AcousticModelEnglish.bundle/mdef
    INFO: mdef.c(531): Found byte-order mark BMDF, assuming this is a binary mdef file
    INFO: bin_mdef.c(336): Reading binary model definition: /Users/marcrsilverman/Library/Developer/CoreSimulator/Devices/B7DE9E45-73D3-4195-BC4F-C43D846C5CF1/data/Containers/Bundle/Application/A22E2A81-F7D4-4A0F-8B4E-1F54E255E91B/Sample Tests.app/AcousticModelEnglish.bundle/mdef
    INFO: bin_mdef.c(516): 46 CI-phone, 168344 CD-phone, 3 emitstate/phone, 138 CI-sen, 6138 Sen, 32881 Sen-Seq
    INFO: tmat.c(206): Reading HMM transition probability matrices: /Users/marcrsilverman/Library/Developer/CoreSimulator/Devices/B7DE9E45-73D3-4195-BC4F-C43D846C5CF1/data/Containers/Bundle/Application/A22E2A81-F7D4-4A0F-8B4E-1F54E255E91B/Sample Tests.app/AcousticModelEnglish.bundle/transition_matrices
    INFO: acmod.c(124): Attempting to use SCHMM computation module
    INFO: ms_gauden.c(198): Reading mixture gaussian parameter: /Users/marcrsilverman/Library/Developer/CoreSimulator/Devices/B7DE9E45-73D3-4195-BC4F-C43D846C5CF1/data/Containers/Bundle/Application/A22E2A81-F7D4-4A0F-8B4E-1F54E255E91B/Sample Tests.app/AcousticModelEnglish.bundle/means
    INFO: ms_gauden.c(292): 1 codebook, 3 feature, size:
    INFO: ms_gauden.c(294): 512×13
    INFO: ms_gauden.c(294): 512×13
    INFO: ms_gauden.c(294): 512×13
    INFO: ms_gauden.c(198): Reading mixture gaussian parameter: /Users/marcrsilverman/Library/Developer/CoreSimulator/Devices/B7DE9E45-73D3-4195-BC4F-C43D846C5CF1/data/Containers/Bundle/Application/A22E2A81-F7D4-4A0F-8B4E-1F54E255E91B/Sample Tests.app/AcousticModelEnglish.bundle/variances
    INFO: ms_gauden.c(292): 1 codebook, 3 feature, size:
    INFO: ms_gauden.c(294): 512×13
    INFO: ms_gauden.c(294): 512×13
    INFO: ms_gauden.c(294): 512×13
    INFO: ms_gauden.c(354): 0 variance values floored
    INFO: s2_semi_mgau.c(904): Loading senones from dump file /Users/marcrsilverman/Library/Developer/CoreSimulator/Devices/B7DE9E45-73D3-4195-BC4F-C43D846C5CF1/data/Containers/Bundle/Application/A22E2A81-F7D4-4A0F-8B4E-1F54E255E91B/Sample Tests.app/AcousticModelEnglish.bundle/sendump
    INFO: s2_semi_mgau.c(928): BEGIN FILE FORMAT DESCRIPTION
    INFO: s2_semi_mgau.c(991): Rows: 512, Columns: 6138
    INFO: s2_semi_mgau.c(1023): Using memory-mapped I/O for senones
    INFO: s2_semi_mgau.c(1294): Maximum top-N: 4 Top-N beams: 0 0 0
    INFO: dict.c(320): Allocating 4109 * 32 bytes (128 KiB) for word entries
    INFO: dict.c(333): Reading main dictionary: /Users/marcrsilverman/Library/Developer/CoreSimulator/Devices/B7DE9E45-73D3-4195-BC4F-C43D846C5CF1/data/Containers/Data/Application/D50BFA31-3A15-4674-9A74-563D7EE59C2A/Library/Caches/FirstOpenEarsDynamicLanguageModel.dic
    INFO: dict.c(213): Allocated 0 KiB for strings, 0 KiB for phones
    INFO: dict.c(336): 4 words read
    INFO: dict.c(342): Reading filler dictionary: /Users/marcrsilverman/Library/Developer/CoreSimulator/Devices/B7DE9E45-73D3-4195-BC4F-C43D846C5CF1/data/Containers/Bundle/Application/A22E2A81-F7D4-4A0F-8B4E-1F54E255E91B/Sample Tests.app/AcousticModelEnglish.bundle/noisedict
    INFO: dict.c(213): Allocated 0 KiB for strings, 0 KiB for phones
    INFO: dict.c(345): 9 words read
    INFO: dict2pid.c(396): Building PID tables for dictionary
    INFO: dict2pid.c(406): Allocating 46^3 * 2 bytes (190 KiB) for word-initial triphones
    INFO: dict2pid.c(132): Allocated 51152 bytes (49 KiB) for word-final triphones
    INFO: dict2pid.c(196): Allocated 51152 bytes (49 KiB) for single-phone word triphones
    INFO: ngram_model_arpa.c(79): No \data\ mark in LM file
    INFO: ngram_model_dmp.c(166): Will use memory-mapped I/O for LM file
    INFO: ngram_model_dmp.c(220): ngrams 1=6, 2=8, 3=4
    INFO: ngram_model_dmp.c(266): 6 = LM.unigrams(+trailer) read
    INFO: ngram_model_dmp.c(312): 8 = LM.bigrams(+trailer) read
    INFO: ngram_model_dmp.c(338): 4 = LM.trigrams read
    INFO: ngram_model_dmp.c(363): 3 = LM.prob2 entries read
    INFO: ngram_model_dmp.c(383): 3 = LM.bo_wt2 entries read
    INFO: ngram_model_dmp.c(403): 2 = LM.prob3 entries read
    INFO: ngram_model_dmp.c(431): 1 = LM.tseg_base entries read
    INFO: ngram_model_dmp.c(487): 6 = ascii word strings read
    INFO: ngram_search_fwdtree.c(99): 4 unique initial diphones
    INFO: ngram_search_fwdtree.c(148): 0 root, 0 non-root channels, 10 single-phone words
    INFO: ngram_search_fwdtree.c(186): Creating search tree
    INFO: ngram_search_fwdtree.c(192): before: 0 root, 0 non-root channels, 10 single-phone words
    INFO: ngram_search_fwdtree.c(326): after: max nonroot chan increased to 134
    INFO: ngram_search_fwdtree.c(339): after: 4 root, 6 non-root channels, 9 single-phone words
    INFO: ngram_search_fwdflat.c(157): fwdflat: min_ef_width = 4, max_sf_win = 25
    2014-12-12 22:01:26.285 Sample Tests[4176:327207] Restoring SmartCMN value of 29.768066
    2014-12-12 22:01:26.285 Sample Tests[4176:327207] Listening.
    2014-12-12 22:01:26.286 Sample Tests[4176:327207] Project has these words or phrases in its dictionary:
    BLUE
    GREEN
    RED
    YELLOW
    2014-12-12 22:01:26.286 Sample Tests[4176:327207] Recognition loop has started
    2014-12-12 22:01:26.286 Sample Tests[4176:327172] Now listening.
    2014-12-12 22:01:26.286 Sample Tests[4176:327172] Starting up.
    2014-12-12 22:01:27.088 Sample Tests[4176:327172] you tapped begin
    2014-12-12 22:01:27.088 Sample Tests[4176:327172] I’m running flite
    2014-12-12 22:01:27.118 Sample Tests[4176:327172] I’m done running flite and it took 0.030388 seconds
    2014-12-12 22:01:27.118 Sample Tests[4176:327172] Flite audio player was nil when referenced so attempting to allocate a new audio player.
    2014-12-12 22:01:27.119 Sample Tests[4176:327172] Loading speech data for Flite concluded successfully.
    2014-12-12 22:01:27.134 Sample Tests[4176:327172] Taking the test
    2014-12-12 22:01:27.135 Sample Tests[4176:327172] first time through
    2014-12-12 22:01:27.135 Sample Tests[4176:327172] GREEN GREEN
    2014-12-12 22:01:27.135 Sample Tests[4176:327172] put label 1418446887.135267
    2014-12-12 22:01:27.135 Sample Tests[4176:327172] Diff? GREEN GREEN
    2014-12-12 22:01:27.135 Sample Tests[4176:327172] The target match is: GREEN
    2014-12-12 22:01:27.135 Sample Tests[4176:327172] Test Count: 1
    2014-12-12 22:01:27.140 Sample Tests[4176:327172] Flite sending suspend recognition notification.
    2014-12-12 22:01:27.140 Sample Tests[4176:327172] Has started speaking
    2014-12-12 22:01:27.140 Sample Tests[4176:327172] Suspended recognition.
    2014-12-12 22:01:28.632 Sample Tests[4176:327172] AVAudioPlayer did finish playing with success flag of 1
    2014-12-12 22:01:28.783 Sample Tests[4176:327172] Flite sending resume recognition notification.
    2014-12-12 22:01:29.285 Sample Tests[4176:327172] setSecondsOfSilence wasn’t set, using default of 0.700000.
    2014-12-12 22:01:29.285 Sample Tests[4176:327172] Has finished speaking
    2014-12-12 22:01:29.285 Sample Tests[4176:327172] Pocketsphinx has resumed recognition.
    INFO: ngram_search_fwdflat.c(302): Utterance vocabulary contains 0 words
    2014-12-12 22:01:29.527 Sample Tests[4176:327207] Speech detected…
    2014-12-12 22:01:29.527 Sample Tests[4176:327172] Pocketsphinx has detected speech.
    2014-12-12 22:01:30.876 Sample Tests[4176:327207] End of speech detected…
    INFO: cmn_prior.c(131): cmn_prior_update: from < 29.77 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 >
    INFO: cmn_prior.c(149): cmn_prior_update: to < 37.51 6.46 3.92 28.67 -0.21 -13.14 -5.30 -0.33 7.36 -4.15 -10.82 -1.54 1.86 >
    INFO: ngram_search_fwdtree.c(1550): 716 words recognized (9/fr)
    INFO: ngram_search_fwdtree.c(1552): 7449 senones evaluated (91/fr)
    INFO: ngram_search_fwdtree.c(1556): 3078 channels searched (37/fr), 312 1st, 2333 last
    INFO: ngram_search_fwdtree.c(1559): 752 words for which last channels evaluated (9/fr)
    INFO: ngram_search_fwdtree.c(1561): 182 candidate words for entering last phone (2/fr)
    INFO: ngram_search_fwdtree.c(1564): fwdtree 0.03 CPU 0.042 xRT
    2014-12-12 22:01:30.876 Sample Tests[4176:327172] Pocketsphinx has detected a second of silence, concluding an utterance.
    INFO: ngram_search_fwdtree.c(1567): fwdtree 1.48 wall 1.807 xRT
    INFO: ngram_search_fwdflat.c(302): Utterance vocabulary contains 4 words
    INFO: ngram_search_fwdflat.c(938): 616 words recognized (8/fr)
    INFO: ngram_search_fwdflat.c(940): 8665 senones evaluated (106/fr)
    INFO: ngram_search_fwdflat.c(942): 4404 channels searched (53/fr)
    INFO: ngram_search_fwdflat.c(944): 820 words searched (10/fr)
    INFO: ngram_search_fwdflat.c(947): 147 word transitions (1/fr)
    INFO: ngram_search_fwdflat.c(950): fwdflat 0.01 CPU 0.006 xRT
    INFO: ngram_search_fwdflat.c(953): fwdflat 0.01 wall 0.006 xRT
    INFO: ngram_search.c(1215): </s> not found in last frame, using <sil>.80 instead
    INFO: ngram_search.c(1268): lattice start node <s>.0 end node <sil>.44
    INFO: ngram_search.c(1294): Eliminated 92 nodes before end node
    INFO: ngram_search.c(1399): Lattice has 273 nodes, 949 links
    INFO: ps_lattice.c(1368): Normalizer P(O) = alpha(<sil>:44:80) = -652152
    INFO: ps_lattice.c(1403): Joint P(O,S) = -652152 P(S|O) = 0
    INFO: ngram_search.c(890): bestpath 0.00 CPU 0.001 xRT
    INFO: ngram_search.c(893): bestpath 0.00 wall 0.001 xRT
    2014-12-12 22:01:30.882 Sample Tests[4176:327207] Pocketsphinx heard “GREEN” with a score of (0) and an utterance ID of 2.
    2014-12-12 22:01:30.882 Sample Tests[4176:327172] Flite sending interrupt speech request.
    2014-12-12 22:01:30.882 Sample Tests[4176:327172] The received hypothesis is GREEN with a score of 0 and an ID of 2
    2014-12-12 22:01:30.882 Sample Tests[4176:327172] it’s a good word
    2014-12-12 22:01:30.883 Sample Tests[4176:327172] from check the: GREEN
    2014-12-12 22:01:30.883 Sample Tests[4176:327172] It’s match
    2014-12-12 22:01:30.883 Sample Tests[4176:327172] correct color: 0
    2014-12-12 22:01:30.883 Sample Tests[4176:327172] correct word: 1
    2014-12-12 22:01:30.883 Sample Tests[4176:327172] put label 1418446890.883523
    2014-12-12 22:01:30.883 Sample Tests[4176:327172] Duration: 3.748256
    2014-12-12 22:01:30.883 Sample Tests[4176:327172] Taking the test
    2014-12-12 22:01:30.883 Sample Tests[4176:327172] they are the same
    2014-12-12 22:01:30.884 Sample Tests[4176:327172] GREEN GREEN
    2014-12-12 22:01:30.884 Sample Tests[4176:327172] put label 1418446890.884216
    2014-12-12 22:01:30.884 Sample Tests[4176:327172] Diff? GREEN YELLOW
    2014-12-12 22:01:30.884 Sample Tests[4176:327172] The target match is: YELLOW
    2014-12-12 22:01:30.884 Sample Tests[4176:327172] Test Count: 2
    2014-12-12 22:01:31.576 Sample Tests[4176:327207] Speech detected…
    2014-12-12 22:01:31.577 Sample Tests[4176:327172] Pocketsphinx has detected speech.
    2014-12-12 22:01:33.368 Sample Tests[4176:327207] End of speech detected…
    INFO: cmn_prior.c(131): cmn_prior_update: from < 37.51 6.46 3.92 28.67 -0.21 -13.14 -5.30 -0.33 7.36 -4.15 -10.82 -1.54 1.86 >
    INFO: cmn_prior.c(149): cmn_prior_update: to < 35.88 9.12 1.49 19.16 -11.86 -11.39 -5.55 -6.58 -0.43 -9.67 -6.44 0.06 4.72 >
    INFO: ngram_search_fwdtree.c(1550): 976 words recognized (8/fr)
    INFO: ngram_search_fwdtree.c(1552): 10348 senones evaluated (81/fr)
    INFO: ngram_search_fwdtree.c(1556): 4088 channels searched (31/fr), 472 1st, 2984 last
    INFO: ngram_search_fwdtree.c(1559): 1113 words for which last channels evaluated (8/fr)
    INFO: ngram_search_fwdtree.c(1561): 135 candidate words for entering last phone (1/fr)
    INFO: ngram_search_fwdtree.c(1564): fwdtree 0.06 CPU 0.043 xRT
    INFO: ngram_search_fwdtree.c(1567): fwdtree 2.49 wall 1.943 xRT
    2014-12-12 22:01:33.369 Sample Tests[4176:327172] Pocketsphinx has detected a second of silence, concluding an utterance.
    INFO: ngram_search_fwdflat.c(302): Utterance vocabulary contains 4 words
    INFO: ngram_search_fwdflat.c(938): 802 words recognized (6/fr)
    INFO: ngram_search_fwdflat.c(940): 9741 senones evaluated (76/fr)
    INFO: ngram_search_fwdflat.c(942): 4600 channels searched (35/fr)
    INFO: ngram_search_fwdflat.c(944): 1163 words searched (9/fr)
    INFO: ngram_search_fwdflat.c(947): 176 word transitions (1/fr)
    INFO: ngram_search_fwdflat.c(950): fwdflat 0.01 CPU 0.005 xRT
    INFO: ngram_search_fwdflat.c(953): fwdflat 0.01 wall 0.005 xRT
    INFO: ngram_search.c(1215): </s> not found in last frame, using <sil>.126 instead
    INFO: ngram_search.c(1268): lattice start node <s>.0 end node <sil>.93
    INFO: ngram_search.c(1294): Eliminated 109 nodes before end node
    INFO: ngram_search.c(1399): Lattice has 404 nodes, 1189 links
    INFO: ps_lattice.c(1368): Normalizer P(O) = alpha(<sil>:93:126) = -853624
    INFO: ps_lattice.c(1403): Joint P(O,S) = -853624 P(S|O) = 0
    INFO: ngram_search.c(890): bestpath 0.00 CPU 0.001 xRT
    INFO: ngram_search.c(893): bestpath 0.00 wall 0.001 xRT
    2014-12-12 22:01:33.377 Sample Tests[4176:327207] Pocketsphinx heard “YELLOW” with a score of (0) and an utterance ID of 3.
    2014-12-12 22:01:33.377 Sample Tests[4176:327172] Flite sending interrupt speech request.
    2014-12-12 22:01:33.377 Sample Tests[4176:327172] The received hypothesis is YELLOW with a score of 0 and an ID of 3
    2014-12-12 22:01:33.377 Sample Tests[4176:327172] it’s a good word
    2014-12-12 22:01:33.377 Sample Tests[4176:327172] from check the: YELLOW
    2014-12-12 22:01:33.378 Sample Tests[4176:327172] It’s match
    2014-12-12 22:01:33.378 Sample Tests[4176:327172] correct color: 0
    2014-12-12 22:01:33.378 Sample Tests[4176:327172] correct word: 2
    2014-12-12 22:01:33.378 Sample Tests[4176:327172] put label 1418446893.378366
    2014-12-12 22:01:33.378 Sample Tests[4176:327172] Duration: 2.494150
    2014-12-12 22:01:33.378 Sample Tests[4176:327172] Taking the test
    2014-12-12 22:01:33.378 Sample Tests[4176:327172] put label 1418446893.378676
    2014-12-12 22:01:33.378 Sample Tests[4176:327172] Diff? YELLOW BLUE
    2014-12-12 22:01:33.378 Sample Tests[4176:327172] The target match is: BLUE
    2014-12-12 22:01:33.378 Sample Tests[4176:327172] Test Count: 3
    2014-12-12 22:01:33.875 Sample Tests[4176:327207] Speech detected…
    2014-12-12 22:01:33.875 Sample Tests[4176:327172] Pocketsphinx has detected speech.
    2014-12-12 22:01:36.056 Sample Tests[4176:327207] End of speech detected…
    INFO: cmn_prior.c(131): cmn_prior_update: from < 35.88 9.12 1.49 19.16 -11.86 -11.39 -5.55 -6.58 -0.43 -9.67 -6.44 0.06 4.72 >
    INFO: cmn_prior.c(149): cmn_prior_update: to < 33.02 10.41 3.03 16.56 -13.68 -7.59 -1.69 -5.24 -3.57 -10.68 -6.04 1.00 3.16 >
    INFO: ngram_search_fwdtree.c(1550): 1160 words recognized (8/fr)
    INFO: ngram_search_fwdtree.c(1552): 11920 senones evaluated (78/fr)
    INFO: ngram_search_fwdtree.c(1556): 4482 channels searched (29/fr), 592 1st, 3134 last
    INFO: ngram_search_fwdtree.c(1559): 1350 words for which last channels evaluated (8/fr)
    INFO: ngram_search_fwdtree.c(1561): 150 candidate words for entering last phone (0/fr)
    INFO: ngram_search_fwdtree.c(1564): fwdtree 0.06 CPU 0.040 xRT
    INFO: ngram_search_fwdtree.c(1567): fwdtree 2.68 wall 1.763 xRT
    2014-12-12 22:01:36.057 Sample Tests[4176:327172] Pocketsphinx has detected a second of silence, concluding an utterance.
    INFO: ngram_search_fwdflat.c(302): Utterance vocabulary contains 4 words
    INFO: ngram_search_fwdflat.c(938): 973 words recognized (6/fr)
    INFO: ngram_search_fwdflat.c(940): 12098 senones evaluated (80/fr)
    INFO: ngram_search_fwdflat.c(942): 5723 channels searched (37/fr)
    INFO: ngram_search_fwdflat.c(944): 1393 words searched (9/fr)
    INFO: ngram_search_fwdflat.c(947): 176 word transitions (1/fr)
    INFO: ngram_search_fwdflat.c(950): fwdflat 0.01 CPU 0.005 xRT
    INFO: ngram_search_fwdflat.c(953): fwdflat 0.01 wall 0.005 xRT
    INFO: ngram_search.c(1215): </s> not found in last frame, using <sil>.150 instead
    INFO: ngram_search.c(1268): lattice start node <s>.0 end node <sil>.109
    INFO: ngram_search.c(1294): Eliminated 179 nodes before end node
    INFO: ngram_search.c(1399): Lattice has 483 nodes, 1120 links
    INFO: ps_lattice.c(1368): Normalizer P(O) = alpha(<sil>:109:150) = -993502
    INFO: ps_lattice.c(1403): Joint P(O,S) = -993502 P(S|O) = 0
    INFO: ngram_search.c(890): bestpath 0.00 CPU 0.001 xRT
    INFO: ngram_search.c(893): bestpath 0.00 wall 0.001 xRT
    2014-12-12 22:01:36.066 Sample Tests[4176:327207] Pocketsphinx heard “BLUE” with a score of (0) and an utterance ID of 4.
    2014-12-12 22:01:36.066 Sample Tests[4176:327172] Flite sending interrupt speech request.
    2014-12-12 22:01:36.066 Sample Tests[4176:327172] The received hypothesis is BLUE with a score of 0 and an ID of 4
    2014-12-12 22:01:36.066 Sample Tests[4176:327172] it’s a good word
    2014-12-12 22:01:36.066 Sample Tests[4176:327172] from check the: BLUE
    2014-12-12 22:01:36.066 Sample Tests[4176:327172] It’s match
    2014-12-12 22:01:36.067 Sample Tests[4176:327172] correct color: 0
    2014-12-12 22:01:36.067 Sample Tests[4176:327172] correct word: 3
    2014-12-12 22:01:36.067 Sample Tests[4176:327172] put label 1418446896.067251
    2014-12-12 22:01:36.067 Sample Tests[4176:327172] Duration: 2.688575
    2014-12-12 22:01:36.067 Sample Tests[4176:327172] Taking the test
    2014-12-12 22:01:36.067 Sample Tests[4176:327172] put label 1418446896.067515
    2014-12-12 22:01:36.067 Sample Tests[4176:327172] Diff? BLUE GREEN
    2014-12-12 22:01:36.067 Sample Tests[4176:327172] The target match is: GREEN
    2014-12-12 22:01:36.067 Sample Tests[4176:327172] Test Count: 4
    2014-12-12 22:01:36.692 Sample Tests[4176:327207] Speech detected…
    2014-12-12 22:01:36.692 Sample Tests[4176:327172] Pocketsphinx has detected speech.
    2014-12-12 22:01:38.746 Sample Tests[4176:327388] End of speech detected…
    INFO: cmn_prior.c(131): cmn_prior_update: from < 33.02 10.41 3.03 16.56 -13.68 -7.59 -1.69 -5.24 -3.57 -10.68 -6.04 1.00 3.16 >
    INFO: cmn_prior.c(149): cmn_prior_update: to < 32.05 9.59 1.87 17.88 -10.67 -6.82 -2.82 -4.80 -1.47 -10.22 -6.18 1.60 2.75 >
    INFO: ngram_search_fwdtree.c(1550): 1115 words recognized (8/fr)
    INFO: ngram_search_fwdtree.c(1552): 13429 senones evaluated (91/fr)
    INFO: ngram_search_fwdtree.c(1556): 5360 channels searched (36/fr), 565 1st, 4041 last
    INFO: ngram_search_fwdtree.c(1559): 1303 words for which last channels evaluated (8/fr)
    INFO: ngram_search_fwdtree.c(1561): 147 candidate words for entering last phone (0/fr)
    INFO: ngram_search_fwdtree.c(1564): fwdtree 0.06 CPU 0.040 xRT
    INFO: ngram_search_fwdtree.c(1567): fwdtree 2.68 wall 1.811 xRT
    2014-12-12 22:01:38.746 Sample Tests[4176:327172] Pocketsphinx has detected a second of silence, concluding an utterance.
    INFO: ngram_search_fwdflat.c(302): Utterance vocabulary contains 4 words
    INFO: ngram_search_fwdflat.c(938): 878 words recognized (6/fr)
    INFO: ngram_search_fwdflat.c(940): 12086 senones evaluated (82/fr)
    INFO: ngram_search_fwdflat.c(942): 5590 channels searched (37/fr)
    INFO: ngram_search_fwdflat.c(944): 1339 words searched (9/fr)
    INFO: ngram_search_fwdflat.c(947): 176 word transitions (1/fr)
    INFO: ngram_search_fwdflat.c(950): fwdflat 0.01 CPU 0.006 xRT
    INFO: ngram_search_fwdflat.c(953): fwdflat 0.01 wall 0.006 xRT
    INFO: ngram_search.c(1215): </s> not found in last frame, using <sil>.146 instead
    INFO: ngram_search.c(1268): lattice start node <s>.0 end node <sil>.110
    INFO: ngram_search.c(1294): Eliminated 144 nodes before end node
    INFO: ngram_search.c(1399): Lattice has 436 nodes, 931 links
    INFO: ps_lattice.c(1368): Normalizer P(O) = alpha(<sil>:110:146) = -997035
    INFO: ps_lattice.c(1403): Joint P(O,S) = -997035 P(S|O) = 0
    INFO: ngram_search.c(890): bestpath 0.00 CPU 0.001 xRT
    INFO: ngram_search.c(893): bestpath 0.00 wall 0.001 xRT
    2014-12-12 22:01:38.756 Sample Tests[4176:327388] Pocketsphinx heard “GREEN” with a score of (0) and an utterance ID of 5.
    2014-12-12 22:01:38.756 Sample Tests[4176:327172] Flite sending interrupt speech request.
    2014-12-12 22:01:38.757 Sample Tests[4176:327172] The received hypothesis is GREEN with a score of 0 and an ID of 5
    2014-12-12 22:01:38.757 Sample Tests[4176:327172] it’s a good word
    2014-12-12 22:01:38.757 Sample Tests[4176:327172] from check the: GREEN
    2014-12-12 22:01:38.757 Sample Tests[4176:327172] It’s match
    2014-12-12 22:01:38.757 Sample Tests[4176:327172] correct color: 0
    2014-12-12 22:01:38.757 Sample Tests[4176:327172] correct word: 4
    2014-12-12 22:01:38.757 Sample Tests[4176:327172] put label 1418446898.757630
    2014-12-12 22:01:38.757 Sample Tests[4176:327172] Duration: 2.690115
    2014-12-12 22:01:38.757 Sample Tests[4176:327172] Taking the test
    2014-12-12 22:01:38.757 Sample Tests[4176:327172] put label 1418446898.757948
    2014-12-12 22:01:38.758 Sample Tests[4176:327172] Diff? GREEN YELLOW
    2014-12-12 22:01:38.758 Sample Tests[4176:327172] The target match is: YELLOW
    2014-12-12 22:01:38.758 Sample Tests[4176:327172] Test Count: 5
    2014-12-12 22:01:39.385 Sample Tests[4176:327388] Speech detected…
    2014-12-12 22:01:39.386 Sample Tests[4176:327172] Pocketsphinx has detected speech.
    2014-12-12 22:01:41.045 Sample Tests[4176:327388] End of speech detected…
    INFO: cmn_prior.c(131): cmn_prior_update: from < 32.05 9.59 1.87 17.88 -10.67 -6.82 -2.82 -4.80 -1.47 -10.22 -6.18 1.60 2.75 >
    INFO: cmn_prior.c(149): cmn_prior_update: to < 32.36 9.45 2.79 18.70 -13.07 -7.57 -2.67 -5.93 -2.57 -10.57 -5.70 1.14 2.86 >
    INFO: ngram_search_fwdtree.c(1550): 822 words recognized (7/fr)
    INFO: ngram_search_fwdtree.c(1552): 8981 senones evaluated (77/fr)
    INFO: ngram_search_fwdtree.c(1556): 3434 channels searched (29/fr), 423 1st, 2486 last
    2014-12-12 22:01:41.045 Sample Tests[4176:327172] Pocketsphinx has detected a second of silence, concluding an utterance.
    INFO: ngram_search_fwdtree.c(1559): 989 words for which last channels evaluated (8/fr)
    INFO: ngram_search_fwdtree.c(1561): 117 candidate words for entering last phone (1/fr)
    INFO: ngram_search_fwdtree.c(1564): fwdtree 0.05 CPU 0.043 xRT
    INFO: ngram_search_fwdtree.c(1567): fwdtree 2.29 wall 1.956 xRT
    INFO: ngram_search_fwdflat.c(302): Utterance vocabulary contains 4 words
    INFO: ngram_search_fwdflat.c(938): 637 words recognized (5/fr)
    INFO: ngram_search_fwdflat.c(940): 9068 senones evaluated (78/fr)
    INFO: ngram_search_fwdflat.c(942): 4279 channels searched (36/fr)
    INFO: ngram_search_fwdflat.c(944): 1071 words searched (9/fr)
    INFO: ngram_search_fwdflat.c(947): 176 word transitions (1/fr)
    INFO: ngram_search_fwdflat.c(950): fwdflat 0.01 CPU 0.006 xRT
    INFO: ngram_search_fwdflat.c(953): fwdflat 0.01 wall 0.006 xRT
    INFO: ngram_search.c(1268): lattice start node <s>.0 end node </s>.113
    INFO: ngram_search.c(1294): Eliminated 5 nodes before end node
    INFO: ngram_search.c(1399): Lattice has 328 nodes, 1343 links
    INFO: ps_lattice.c(1368): Normalizer P(O) = alpha(</s>:113:115) = -757420
    INFO: ps_lattice.c(1403): Joint P(O,S) = -757420 P(S|O) = 0
    INFO: ngram_search.c(890): bestpath 0.00 CPU 0.001 xRT
    INFO: ngram_search.c(893): bestpath 0.00 wall 0.001 xRT
    2014-12-12 22:01:41.053 Sample Tests[4176:327388] Pocketsphinx heard “YELLOW” with a score of (0) and an utterance ID of 6.
    2014-12-12 22:01:41.053 Sample Tests[4176:327172] Flite sending interrupt speech request.
    2014-12-12 22:01:41.053 Sample Tests[4176:327172] The received hypothesis is YELLOW with a score of 0 and an ID of 6
    2014-12-12 22:01:41.053 Sample Tests[4176:327172] it’s a good word
    2014-12-12 22:01:41.053 Sample Tests[4176:327172] from check the: YELLOW
    2014-12-12 22:01:41.054 Sample Tests[4176:327172] It’s match
    2014-12-12 22:01:41.054 Sample Tests[4176:327172] correct color: 0
    2014-12-12 22:01:41.054 Sample Tests[4176:327172] correct word: 5
    2014-12-12 22:01:41.054 Sample Tests[4176:327172] put label 1418446901.054433
    2014-12-12 22:01:41.054 Sample Tests[4176:327172] Duration: 2.296485
    2014-12-12 22:01:41.054 Sample Tests[4176:327172] Taking the test
    2014-12-12 22:01:41.054 Sample Tests[4176:327172] put label 1418446901.054778
    2014-12-12 22:01:41.054 Sample Tests[4176:327172] Diff? YELLOW RED
    2014-12-12 22:01:41.054 Sample Tests[4176:327172] The target match is: RED
    2014-12-12 22:01:41.055 Sample Tests[4176:327172] Test Count: 6
    2014-12-12 22:01:41.562 Sample Tests[4176:327388] Speech detected…
    2014-12-12 22:01:41.562 Sample Tests[4176:327172] Pocketsphinx has detected speech.
    2014-12-12 22:01:43.352 Sample Tests[4176:327388] End of speech detected…
    INFO: cmn_prior.c(131): cmn_prior_update: from < 32.36 9.45 2.79 18.70 -13.07 -7.57 -2.67 -5.93 -2.57 -10.57 -5.70 1.14 2.86 >
    INFO: cmn_prior.c(149): cmn_prior_update: to < 31.84 9.71 2.70 18.20 -12.60 -7.07 -4.68 -7.13 -1.92 -10.40 -5.39 0.85 3.88 >
    INFO: ngram_search_fwdtree.c(1550): 850 words recognized (7/fr)
    INFO: ngram_search_fwdtree.c(1552): 11260 senones evaluated (93/fr)
    INFO: ngram_search_fwdtree.c(1556): 4730 channels searched (39/fr), 466 1st, 3720 last
    INFO: ngram_search_fwdtree.c(1559): 1063 words for which last channels evaluated (8/fr)
    INFO: ngram_search_fwdtree.c(1561): 134 candidate words for entering last phone (1/fr)
    INFO: ngram_search_fwdtree.c(1564): fwdtree 0.05 CPU 0.042 xRT
    INFO: ngram_search_fwdtree.c(1567): fwdtree 2.30 wall 1.901 xRT
    2014-12-12 22:01:43.353 Sample Tests[4176:327172] Pocketsphinx has detected a second of silence, concluding an utterance.
    INFO: ngram_search_fwdflat.c(302): Utterance vocabulary contains 4 words
    INFO: ngram_search_fwdflat.c(938): 715 words recognized (6/fr)
    INFO: ngram_search_fwdflat.c(940): 12992 senones evaluated (107/fr)
    INFO: ngram_search_fwdflat.c(942): 6853 channels searched (56/fr)
    INFO: ngram_search_fwdflat.c(944): 1213 words searched (10/fr)
    INFO: ngram_search_fwdflat.c(947): 216 word transitions (1/fr)
    INFO: ngram_search_fwdflat.c(950): fwdflat 0.01 CPU 0.006 xRT
    INFO: ngram_search_fwdflat.c(953): fwdflat 0.01 wall 0.006 xRT
    INFO: ngram_search.c(1215): </s> not found in last frame, using <sil>.119 instead
    INFO: ngram_search.c(1268): lattice start node <s>.0 end node <sil>.79
    INFO: ngram_search.c(1294): Eliminated 155 nodes before end node
    INFO: ngram_search.c(1399): Lattice has 297 nodes, 310 links
    INFO: ps_lattice.c(1368): Normalizer P(O) = alpha(<sil>:79:119) = -818808
    INFO: ps_lattice.c(1403): Joint P(O,S) = -818808 P(S|O) = 0
    INFO: ngram_search.c(890): bestpath 0.00 CPU 0.000 xRT
    INFO: ngram_search.c(893): bestpath 0.00 wall 0.000 xRT
    2014-12-12 22:01:43.360 Sample Tests[4176:327388] Pocketsphinx heard “RED” with a score of (0) and an utterance ID of 7.
    2014-12-12 22:01:43.361 Sample Tests[4176:327172] Flite sending interrupt speech request.
    2014-12-12 22:01:43.361 Sample Tests[4176:327172] The received hypothesis is RED with a score of 0 and an ID of 7
    2014-12-12 22:01:43.361 Sample Tests[4176:327172] it’s a good word
    2014-12-12 22:01:43.361 Sample Tests[4176:327172] from check the: RED
    2014-12-12 22:01:43.361 Sample Tests[4176:327172] It’s match
    2014-12-12 22:01:43.361 Sample Tests[4176:327172] correct color: 0
    2014-12-12 22:01:43.361 Sample Tests[4176:327172] correct word: 6
    2014-12-12 22:01:43.361 Sample Tests[4176:327172] put label 1418446903.361861
    2014-12-12 22:01:43.361 Sample Tests[4176:327172] Duration: 2.307083
    2014-12-12 22:01:43.362 Sample Tests[4176:327172] Taking the test
    2014-12-12 22:01:43.362 Sample Tests[4176:327172] I’m running flite
    2014-12-12 22:01:43.394 Sample Tests[4176:327172] I’m done running flite and it took 0.032211 seconds
    2014-12-12 22:01:43.394 Sample Tests[4176:327172] Flite audio player was nil when referenced so attempting to allocate a new audio player.
    2014-12-12 22:01:43.394 Sample Tests[4176:327172] Loading speech data for Flite concluded successfully.
    2014-12-12 22:01:43.411 Sample Tests[4176:327172] put label 1418446903.411198
    2014-12-12 22:01:43.411 Sample Tests[4176:327172] Diff? RED BLUE
    2014-12-12 22:01:43.411 Sample Tests[4176:327172] The target match is: YELLOW
    2014-12-12 22:01:43.411 Sample Tests[4176:327172] Test Count: 7
    2014-12-12 22:01:43.411 Sample Tests[4176:327172] Flite sending suspend recognition notification.
    2014-12-12 22:01:43.412 Sample Tests[4176:327172] Has started speaking
    2014-12-12 22:01:43.412 Sample Tests[4176:327172] Suspended recognition.
    2014-12-12 22:01:45.118 Sample Tests[4176:327172] AVAudioPlayer did finish playing with success flag of 1
    2014-12-12 22:01:45.269 Sample Tests[4176:327172] Flite sending resume recognition notification.
    2014-12-12 22:01:45.770 Sample Tests[4176:327172] setSecondsOfSilence wasn’t set, using default of 0.700000.
    2014-12-12 22:01:45.770 Sample Tests[4176:327172] Has finished speaking
    2014-12-12 22:01:45.771 Sample Tests[4176:327172] Pocketsphinx has resumed recognition.
    INFO: cmn_prior.c(131): cmn_prior_update: from < 31.84 9.71 2.70 18.20 -12.60 -7.07 -4.68 -7.13 -1.92 -10.40 -5.39 0.85 3.88 >
    INFO: cmn_prior.c(149): cmn_prior_update: to < 31.84 9.71 2.70 18.20 -12.60 -7.07 -4.68 -7.13 -1.92 -10.40 -5.39 0.85 3.88 >
    INFO: ngram_search_fwdflat.c(302): Utterance vocabulary contains 0 words
    2014-12-12 22:01:46.171 Sample Tests[4176:327388] Speech detected…
    2014-12-12 22:01:46.171 Sample Tests[4176:327172] Pocketsphinx has detected speech.
    INFO: cmn_prior.c(99): cmn_prior_update: from < 31.84 9.71 2.70 18.20 -12.60 -7.07 -4.68 -7.13 -1.92 -10.40 -5.39 0.85 3.88 >
    INFO: cmn_prior.c(116): cmn_prior_update: to < 33.16 10.00 3.33 20.09 -13.86 -7.41 -4.57 -8.27 -1.63 -10.68 -5.05 0.78 4.32 >
    2014-12-12 22:01:47.834 Sample Tests[4176:327388] End of speech detected…
    INFO: cmn_prior.c(131): cmn_prior_update: from < 33.16 10.00 3.33 20.09 -13.86 -7.41 -4.57 -8.27 -1.63 -10.68 -5.05 0.78 4.32 >
    INFO: cmn_prior.c(149): cmn_prior_update: to < 31.20 10.16 3.24 17.98 -13.77 -7.27 -5.08 -7.02 -2.45 -10.21 -5.14 1.02 3.79 >
    INFO: ngram_search_fwdtree.c(1550): 799 words recognized (8/fr)
    INFO: ngram_search_fwdtree.c(1552): 8750 senones evaluated (83/fr)
    2014-12-12 22:01:47.834 Sample Tests[4176:327172] Pocketsphinx has detected a second of silence, concluding an utterance.
    INFO: ngram_search_fwdtree.c(1556): 3518 channels searched (33/fr), 398 1st, 2622 last
    INFO: ngram_search_fwdtree.c(1559): 900 words for which last channels evaluated (8/fr)
    INFO: ngram_search_fwdtree.c(1561): 129 candidate words for entering last phone (1/fr)
    INFO: ngram_search_fwdtree.c(1564): fwdtree 0.04 CPU 0.041 xRT
    INFO: ngram_search_fwdtree.c(1567): fwdtree 2.05 wall 1.932 xRT
    INFO: ngram_search_fwdflat.c(302): Utterance vocabulary contains 4 words
    INFO: ngram_search_fwdflat.c(938): 651 words recognized (6/fr)
    INFO: ngram_search_fwdflat.c(940): 8313 senones evaluated (78/fr)
    INFO: ngram_search_fwdflat.c(942): 3928 channels searched (37/fr)
    INFO: ngram_search_fwdflat.c(944): 1011 words searched (9/fr)
    INFO: ngram_search_fwdflat.c(947): 137 word transitions (1/fr)
    INFO: ngram_search_fwdflat.c(950): fwdflat 0.01 CPU 0.006 xRT
    INFO: ngram_search_fwdflat.c(953): fwdflat 0.01 wall 0.006 xRT
    INFO: ngram_search.c(1215): </s> not found in last frame, using <sil>.104 instead
    INFO: ngram_search.c(1268): lattice start node <s>.0 end node <sil>.64
    INFO: ngram_search.c(1294): Eliminated 147 nodes before end node
    INFO: ngram_search.c(1399): Lattice has 329 nodes, 1033 links
    INFO: ps_lattice.c(1368): Normalizer P(O) = alpha(<sil>:64:104) = -741548
    INFO: ps_lattice.c(1403): Joint P(O,S) = -741548 P(S|O) = 0
    INFO: ngram_search.c(890): bestpath 0.00 CPU 0.001 xRT
    INFO: ngram_search.c(893): bestpath 0.00 wall 0.001 xRT
    2014-12-12 22:01:47.841 Sample Tests[4176:327388] Pocketsphinx heard “YELLOW” with a score of (0) and an utterance ID of 8.
    2014-12-12 22:01:47.842 Sample Tests[4176:327172] Flite sending interrupt speech request.
    2014-12-12 22:01:47.842 Sample Tests[4176:327172] The received hypothesis is YELLOW with a score of 0 and an ID of 8
    2014-12-12 22:01:47.842 Sample Tests[4176:327172] it’s a good word
    2014-12-12 22:01:47.842 Sample Tests[4176:327172] from check the: YELLOW
    2014-12-12 22:01:47.842 Sample Tests[4176:327172] It’s match
    2014-12-12 22:01:47.842 Sample Tests[4176:327172] correct color: 1
    2014-12-12 22:01:47.842 Sample Tests[4176:327172] correct word: 6
    2014-12-12 22:01:47.842 Sample Tests[4176:327172] put label 1418446907.842875
    2014-12-12 22:01:47.842 Sample Tests[4176:327172] Duration: 4.431677
    2014-12-12 22:01:47.843 Sample Tests[4176:327172] Taking the test
    2014-12-12 22:01:47.843 Sample Tests[4176:327172] put label 1418446907.843208
    2014-12-12 22:01:47.843 Sample Tests[4176:327172] Diff? BLUE GREEN
    2014-12-12 22:01:47.843 Sample Tests[4176:327172] The target match is: BLUE
    2014-12-12 22:01:47.843 Sample Tests[4176:327172] Test Count: 8
    2014-12-12 22:01:48.220 Sample Tests[4176:327388] Speech detected…
    2014-12-12 22:01:48.220 Sample Tests[4176:327172] Pocketsphinx has detected speech.
    2014-12-12 22:01:50.643 Sample Tests[4176:327388] End of speech detected…
    INFO: cmn_prior.c(131): cmn_prior_update: from < 31.20 10.16 3.24 17.98 -13.77 -7.27 -5.08 -7.02 -2.45 -10.21 -5.14 1.02 3.79 >
    INFO: cmn_prior.c(149): cmn_prior_update: to < 29.29 8.59 2.47 17.98 -12.27 -6.89 -5.45 -6.33 -1.88 -10.17 -5.88 1.86 4.03 >
    INFO: ngram_search_fwdtree.c(1550): 1531 words recognized (8/fr)
    INFO: ngram_search_fwdtree.c(1552): 16349 senones evaluated (84/fr)
    INFO: ngram_search_fwdtree.c(1556): 6125 channels searched (31/fr), 754 1st, 4353 last
    INFO: ngram_search_fwdtree.c(1559): 1723 words for which last channels evaluated (8/fr)
    INFO: ngram_search_fwdtree.c(1561): 212 candidate words for entering last phone (1/fr)
    INFO: ngram_search_fwdtree.c(1564): fwdtree 0.06 CPU 0.032 xRT
    INFO: ngram_search_fwdtree.c(1567): fwdtree 2.80 wall 1.444 xRT
    2014-12-12 22:01:50.644 Sample Tests[4176:327172] Pocketsphinx has detected a second of silence, concluding an utterance.
    INFO: ngram_search_fwdflat.c(302): Utterance vocabulary contains 4 words
    INFO: ngram_search_fwdflat.c(938): 1185 words recognized (6/fr)
    INFO: ngram_search_fwdflat.c(940): 13249 senones evaluated (68/fr)
    INFO: ngram_search_fwdflat.c(942): 5966 channels searched (30/fr)
    INFO: ngram_search_fwdflat.c(944): 1675 words searched (8/fr)
    INFO: ngram_search_fwdflat.c(947): 176 word transitions (0/fr)
    INFO: ngram_search_fwdflat.c(950): fwdflat 0.01 CPU 0.005 xRT
    INFO: ngram_search_fwdflat.c(953): fwdflat 0.01 wall 0.005 xRT
    INFO: ngram_search.c(1215): </s> not found in last frame, using <sil>.192 instead
    INFO: ngram_search.c(1268): lattice start node <s>.0 end node <sil>.155
    INFO: ngram_search.c(1294): Eliminated 137 nodes before end node
    INFO: ngram_search.c(1399): Lattice has 607 nodes, 2288 links
    INFO: ps_lattice.c(1368): Normalizer P(O) = alpha(<sil>:155:192) = -1297170
    INFO: ps_lattice.c(1403): Joint P(O,S) = -1297170 P(S|O) = 0
    INFO: ngram_search.c(890): bestpath 0.00 CPU 0.001 xRT
    INFO: ngram_search.c(893): bestpath 0.00 wall 0.001 xRT
    2014-12-12 22:01:50.656 Sample Tests[4176:327388] Pocketsphinx heard “GREEN” with a score of (0) and an utterance ID of 9.
    2014-12-12 22:01:50.656 Sample Tests[4176:327172] Flite sending interrupt speech request.
    2014-12-12 22:01:50.657 Sample Tests[4176:327172] The received hypothesis is GREEN with a score of 0 and an ID of 9
    2014-12-12 22:01:50.657 Sample Tests[4176:327172] it’s a good word
    2014-12-12 22:01:50.657 Sample Tests[4176:327172] from check the: GREEN
    2014-12-12 22:01:50.657 Sample Tests[4176:327172] It’s not a match
    2014-12-12 22:01:50.657 Sample Tests[4176:327172] Incorrect color: 1
    2014-12-12 22:01:50.657 Sample Tests[4176:327172] Incorrect word: 0
    2014-12-12 22:01:50.657 Sample Tests[4176:327172] put label 1418446910.657489
    2014-12-12 22:01:50.657 Sample Tests[4176:327172] Duration: 2.814281
    2014-12-12 22:01:50.657 Sample Tests[4176:327172] Taking the test
    2014-12-12 22:01:50.657 Sample Tests[4176:327172] put label 1418446910.657798
    2014-12-12 22:01:50.657 Sample Tests[4176:327172] Diff? GREEN RED
    2014-12-12 22:01:50.657 Sample Tests[4176:327172] The target match is: YELLOW
    2014-12-12 22:01:50.658 Sample Tests[4176:327172] Test Count: 9
    2014-12-12 22:01:51.929 Sample Tests[4176:327388] Speech detected…
    2014-12-12 22:01:51.930 Sample Tests[4176:327172] Pocketsphinx has detected speech.
    INFO: cmn_prior.c(99): cmn_prior_update: from < 29.29 8.59 2.47 17.98 -12.27 -6.89 -5.45 -6.33 -1.88 -10.17 -5.88 1.86 4.03 >
    INFO: cmn_prior.c(116): cmn_prior_update: to < 30.89 9.33 2.64 18.96 -13.89 -7.41 -4.53 -7.88 -1.70 -10.70 -5.36 1.66 4.45 >
    2014-12-12 22:01:53.466 Sample Tests[4176:327509] End of speech detected…
    INFO: cmn_prior.c(131): cmn_prior_update: from < 30.89 9.33 2.64 18.96 -13.89 -7.41 -4.53 -7.88 -1.70 -10.70 -5.36 1.66 4.45 >
    INFO: cmn_prior.c(149): cmn_prior_update: to < 29.46 9.79 2.45 16.60 -14.19 -7.33 -5.26 -6.29 -2.16 -10.24 -6.02 1.71 3.87 >
    INFO: ngram_search_fwdtree.c(1550): 771 words recognized (7/fr)
    INFO: ngram_search_fwdtree.c(1552): 8120 senones evaluated (79/fr)
    INFO: ngram_search_fwdtree.c(1556): 3169 channels searched (30/fr), 375 1st, 2315 last
    INFO: ngram_search_fwdtree.c(1559): 860 words for which last channels evaluated (8/fr)
    INFO: ngram_search_fwdtree.c(1561): 110 candidate words for entering last phone (1/fr)
    INFO: ngram_search_fwdtree.c(1564): fwdtree 0.06 CPU 0.056 xRT
    INFO: ngram_search_fwdtree.c(1567): fwdtree 2.81 wall 2.728 xRT
    2014-12-12 22:01:53.466 Sample Tests[4176:327172] Pocketsphinx has detected a second of silence, concluding an utterance.
    INFO: ngram_search_fwdflat.c(302): Utterance vocabulary contains 3 words
    INFO: ngram_search_fwdflat.c(938): 624 words recognized (6/fr)
    INFO: ngram_search_fwdflat.c(940): 6491 senones evaluated (63/fr)
    INFO: ngram_search_fwdflat.c(942): 2752 channels searched (26/fr)
    INFO: ngram_search_fwdflat.c(944): 905 words searched (8/fr)
    INFO: ngram_search_fwdflat.c(947): 105 word transitions (1/fr)
    INFO: ngram_search_fwdflat.c(950): fwdflat 0.01 CPU 0.006 xRT
    INFO: ngram_search_fwdflat.c(953): fwdflat 0.01 wall 0.006 xRT
    INFO: ngram_search.c(1215): </s> not found in last frame, using <sil>.101 instead
    INFO: ngram_search.c(1268): lattice start node <s>.0 end node <sil>.62
    INFO: ngram_search.c(1294): Eliminated 152 nodes before end node
    INFO: ngram_search.c(1399): Lattice has 340 nodes, 750 links
    INFO: ps_lattice.c(1368): Normalizer P(O) = alpha(<sil>:62:101) = -672632
    INFO: ps_lattice.c(1403): Joint P(O,S) = -672632 P(S|O) = 0
    INFO: ngram_search.c(890): bestpath 0.00 CPU 0.001 xRT
    INFO: ngram_search.c(893): bestpath 0.00 wall 0.001 xRT
    2014-12-12 22:01:53.473 Sample Tests[4176:327509] Pocketsphinx heard “YELLOW” with a score of (0) and an utterance ID of 10.
    2014-12-12 22:01:53.473 Sample Tests[4176:327172] Flite sending interrupt speech request.
    2014-12-12 22:01:53.473 Sample Tests[4176:327172] The received hypothesis is YELLOW with a score of 0 and an ID of 10
    2014-12-12 22:01:53.473 Sample Tests[4176:327172] it’s a good word
    2014-12-12 22:01:53.473 Sample Tests[4176:327172] from check the: YELLOW
    2014-12-12 22:01:53.473 Sample Tests[4176:327172] It’s match
    2014-12-12 22:01:53.473 Sample Tests[4176:327172] correct color: 2
    2014-12-12 22:01:53.473 Sample Tests[4176:327172] correct word: 6
    2014-12-12 22:01:53.474 Sample Tests[4176:327172] put label 1418446913.474013
    2014-12-12 22:01:53.474 Sample Tests[4176:327172] Duration: 2.816215
    2014-12-12 22:01:53.474 Sample Tests[4176:327172] Taking the test
    2014-12-12 22:01:53.474 Sample Tests[4176:327172] they are the same
    2014-12-12 22:01:53.474 Sample Tests[4176:327172] RED RED
    2014-12-12 22:01:53.474 Sample Tests[4176:327172] put label 1418446913.474520
    2014-12-12 22:01:53.474 Sample Tests[4176:327172] Diff? RED GREEN
    2014-12-12 22:01:53.474 Sample Tests[4176:327172] The target match is: GREEN
    2014-12-12 22:01:53.474 Sample Tests[4176:327172] Test Count: 10
    2014-12-12 22:01:54.229 Sample Tests[4176:327509] Speech detected…
    2014-12-12 22:01:54.230 Sample Tests[4176:327172] Pocketsphinx has detected speech.
    2014-12-12 22:01:56.919 Sample Tests[4176:327509] End of speech detected…
    INFO: cmn_prior.c(131): cmn_prior_update: from < 29.46 9.79 2.45 16.60 -14.19 -7.33 -5.26 -6.29 -2.16 -10.24 -6.02 1.71 3.87 >
    INFO: cmn_prior.c(149): cmn_prior_update: to < 28.37 8.76 0.80 16.25 -12.14 -6.56 -5.85 -5.98 -1.35 -9.37 -6.16 2.28 3.59 >
    INFO: ngram_search_fwdtree.c(1550): 1676 words recognized (8/fr)
    INFO: ngram_search_fwdtree.c(1552): 18218 senones evaluated (86/fr)
    2014-12-12 22:01:56.920 Sample Tests[4176:327172] Pocketsphinx has detected a second of silence, concluding an utterance.
    INFO: ngram_search_fwdtree.c(1556): 6991 channels searched (33/fr), 815 1st, 5048 last
    INFO: ngram_search_fwdtree.c(1559): 1890 words for which last channels evaluated (8/fr)
    INFO: ngram_search_fwdtree.c(1561): 228 candidate words for entering last phone (1/fr)
    INFO: ngram_search_fwdtree.c(1564): fwdtree 0.08 CPU 0.036 xRT
    INFO: ngram_search_fwdtree.c(1567): fwdtree 3.45 wall 1.634 xRT
    INFO: ngram_search_fwdflat.c(302): Utterance vocabulary contains 4 words
    INFO: ngram_search_fwdflat.c(938): 1334 words recognized (6/fr)
    INFO: ngram_search_fwdflat.c(940): 13925 senones evaluated (66/fr)
    INFO: ngram_search_fwdflat.c(942): 6327 channels searched (29/fr)
    INFO: ngram_search_fwdflat.c(944): 1791 words searched (8/fr)
    INFO: ngram_search_fwdflat.c(947): 176 word transitions (0/fr)
    INFO: ngram_search_fwdflat.c(950): fwdflat 0.01 CPU 0.005 xRT
    INFO: ngram_search_fwdflat.c(953): fwdflat 0.01 wall 0.005 xRT
    INFO: ngram_search.c(1215): </s> not found in last frame, using <sil>.209 instead
    INFO: ngram_search.c(1268): lattice start node <s>.0 end node <sil>.171
    INFO: ngram_search.c(1294): Eliminated 137 nodes before end node
    INFO: ngram_search.c(1399): Lattice has 680 nodes, 2871 links
    INFO: ps_lattice.c(1368): Normalizer P(O) = alpha(<sil>:171:209) = -1412729
    INFO: ps_lattice.c(1403): Joint P(O,S) = -1412729 P(S|O) = 0
    INFO: ngram_search.c(890): bestpath 0.00 CPU 0.001 xRT
    INFO: ngram_search.c(893): bestpath 0.00 wall 0.001 xRT
    2014-12-12 22:01:56.933 Sample Tests[4176:327509] Pocketsphinx heard “GREEN” with a score of (0) and an utterance ID of 11.
    2014-12-12 22:01:56.933 Sample Tests[4176:327172] Flite sending interrupt speech request.
    2014-12-12 22:01:56.933 Sample Tests[4176:327172] The received hypothesis is GREEN with a score of 0 and an ID of 11
    2014-12-12 22:01:56.933 Sample Tests[4176:327172] it’s a good word
    2014-12-12 22:01:56.933 Sample Tests[4176:327172] from check the: GREEN
    2014-12-12 22:01:56.933 Sample Tests[4176:327172] It’s match
    2014-12-12 22:01:56.933 Sample Tests[4176:327172] correct color: 3
    2014-12-12 22:01:56.933 Sample Tests[4176:327172] correct word: 6
    2014-12-12 22:01:56.933 Sample Tests[4176:327172] put label 1418446916.933898
    2014-12-12 22:01:56.934 Sample Tests[4176:327172] Duration: 3.459378
    2014-12-12 22:01:56.934 Sample Tests[4176:327172] Taking the test
    2014-12-12 22:01:56.934 Sample Tests[4176:327172] put label 1418446916.934186
    2014-12-12 22:01:56.934 Sample Tests[4176:327172] Diff? GREEN RED
    2014-12-12 22:01:56.934 Sample Tests[4176:327172] The target match is: YELLOW
    2014-12-12 22:01:56.934 Sample Tests[4176:327172] Test Count: 11
    2014-12-12 22:01:58.074 Sample Tests[4176:327509] Speech detected…
    2014-12-12 22:01:58.075 Sample Tests[4176:327172] Pocketsphinx has detected speech.
    INFO: cmn_prior.c(99): cmn_prior_update: from < 28.37 8.76 0.80 16.25 -12.14 -6.56 -5.85 -5.98 -1.35 -9.37 -6.16 2.28 3.59 >
    INFO: cmn_prior.c(116): cmn_prior_update: to < 30.27 9.81 1.22 17.20 -13.97 -7.26 -4.90 -7.35 -1.09 -10.47 -5.93 1.50 3.85 >
    2014-12-12 22:01:59.861 Sample Tests[4176:327509] End of speech detected…
    INFO: cmn_prior.c(131): cmn_prior_update: from < 30.27 9.81 1.22 17.20 -13.97 -7.26 -4.90 -7.35 -1.09 -10.47 -5.93 1.50 3.85 >
    INFO: cmn_prior.c(149): cmn_prior_update: to < 28.64 9.50 1.41 15.44 -13.84 -6.60 -4.98 2014-12-12 22:01:59.861 Sample Tests[4176:327172] Pocketsphinx has detected a second of silence, concluding an utterance.
    -6.39 -1.59 -9.69 -5.94 1.89 3.33 >
    INFO: ngram_search_fwdtree.c(1550): 859 words recognized (8/fr)
    INFO: ngram_search_fwdtree.c(1552): 10219 senones evaluated (91/fr)
    INFO: ngram_search_fwdtree.c(1556): 4433 channels searched (39/fr), 420 1st, 3475 last
    INFO: ngram_search_fwdtree.c(1559): 986 words for which last channels evaluated (8/fr)
    INFO: ngram_search_fwdtree.c(1561): 150 candidate words for entering last phone (1/fr)
    INFO: ngram_search_fwdtree.c(1564): fwdtree 0.06 CPU 0.054 xRT
    INFO: ngram_search_fwdtree.c(1567): fwdtree 2.93 wall 2.615 xRT
    INFO: ngram_search_fwdflat.c(302): Utterance vocabulary contains 5 words
    INFO: ngram_search_fwdflat.c(938): 718 words recognized (6/fr)
    INFO: ngram_search_fwdflat.c(940): 13117 senones evaluated (117/fr)
    INFO: ngram_search_fwdflat.c(942): 7135 channels searched (63/fr)
    INFO: ngram_search_fwdflat.c(944): 1174 words searched (10/fr)
    INFO: ngram_search_fwdflat.c(947): 235 word transitions (2/fr)
    INFO: ngram_search_fwdflat.c(950): fwdflat 0.01 CPU 0.006 xRT
    INFO: ngram_search_fwdflat.c(953): fwdflat 0.01 wall 0.006 xRT
    INFO: ngram_search.c(1215): </s> not found in last frame, using <sil>.110 instead
    INFO: ngram_search.c(1268): lattice start node <s>.0 end node <sil>.69
    INFO: ngram_search.c(1294): Eliminated 159 nodes before end node
    INFO: ngram_search.c(1399): Lattice has 362 nodes, 1053 links
    INFO: ps_lattice.c(1368): Normalizer P(O) = alpha(<sil>:69:110) = -757221
    INFO: ps_lattice.c(1403): Joint P(O,S) = -757676 P(S|O) = -455
    INFO: ngram_search.c(890): bestpath 0.00 CPU 0.001 xRT
    INFO: ngram_search.c(893): bestpath 0.00 wall 0.001 xRT
    2014-12-12 22:01:59.870 Sample Tests[4176:327509] Pocketsphinx heard “YELLOW” with a score of (-455) and an utterance ID of 12.
    2014-12-12 22:01:59.870 Sample Tests[4176:327172] Flite sending interrupt speech request.
    2014-12-12 22:01:59.870 Sample Tests[4176:327172] The received hypothesis is YELLOW with a score of -455 and an ID of 12
    2014-12-12 22:01:59.870 Sample Tests[4176:327172] it’s a good word
    2014-12-12 22:01:59.870 Sample Tests[4176:327172] from check the: YELLOW
    2014-12-12 22:01:59.870 Sample Tests[4176:327172] It’s match
    2014-12-12 22:01:59.870 Sample Tests[4176:327172] correct color: 4
    2014-12-12 22:01:59.870 Sample Tests[4176:327172] correct word: 6
    2014-12-12 22:01:59.871 Sample Tests[4176:327172] put label 1418446919.871072
    2014-12-12 22:01:59.871 Sample Tests[4176:327172] Duration: 2.936886
    2014-12-12 22:01:59.871 Sample Tests[4176:327172] Taking the test
    2014-12-12 22:01:59.871 Sample Tests[4176:327172] they are the same
    2014-12-12 22:01:59.871 Sample Tests[4176:327172] RED RED
    2014-12-12 22:01:59.871 Sample Tests[4176:327172] put label 1418446919.871578
    2014-12-12 22:01:59.871 Sample Tests[4176:327172] Diff? RED BLUE
    2014-12-12 22:01:59.871 Sample Tests[4176:327172] The target match is: RED
    2014-12-12 22:01:59.871 Sample Tests[4176:327172] Test Count: 12
    2014-12-12 22:02:00.759 Sample Tests[4176:327509] Speech detected…
    2014-12-12 22:02:00.759 Sample Tests[4176:327172] Pocketsphinx has detected speech.
    2014-12-12 22:02:03.832 Sample Tests[4176:327509] End of speech detected…
    INFO: cmn_prior.c(131): cmn_prior_update: from < 28.64 9.50 1.41 15.44 -13.84 -6.60 -4.98 -6.39 -1.59 -9.69 -5.94 1.89 3.33 >
    INFO: cmn_prior.c(149): cmn_prior_update: to < 27.28 11.16 3.62 14.06 -13.40 -6.08 -2.37 -5.10 -2.20 -8.88 -5.66 1.79 2.53 >
    INFO: ngram_search_fwdtree.c(1550): 1924 words recognized (8/fr)
    INFO: ngram_search_fwdtree.c(1552): 19324 senones evaluated (83/fr)
    INFO: ngram_search_fwdtree.c(1556): 7667 channels searched (32/fr), 915 1st, 5634 last
    INFO: ngram_search_fwdtree.c(1559): 2116 words for which last channels evaluated (9/fr)
    INFO: ngram_search_fwdtree.c(1561): 246 candidate words for entering last phone (1/fr)
    INFO: ngram_search_fwdtree.c(1564): fwdtree 0.09 CPU 0.037 xRT
    INFO: ngram_search_fwdtree.c(1567): fwdtree 3.96 wall 1.693 xRT
    2014-12-12 22:02:03.832 Sample Tests[4176:327172] Pocketsphinx has detected a second of silence, concluding an utterance.
    INFO: ngram_search_fwdflat.c(302): Utterance vocabulary contains 4 words
    INFO: ngram_search_fwdflat.c(938): 1370 words recognized (6/fr)
    INFO: ngram_search_fwdflat.c(940): 16550 senones evaluated (71/fr)
    INFO: ngram_search_fwdflat.c(942): 7736 channels searched (33/fr)
    INFO: ngram_search_fwdflat.c(944): 2004 words searched (8/fr)
    INFO: ngram_search_fwdflat.c(947): 176 word transitions (0/fr)
    INFO: ngram_search_fwdflat.c(950): fwdflat 0.01 CPU 0.005 xRT
    INFO: ngram_search_fwdflat.c(953): fwdflat 0.01 wall 0.005 xRT
    INFO: ngram_search.c(1215): </s> not found in last frame, using <sil>.232 instead
    INFO: ngram_search.c(1268): lattice start node <s>.0 end node <sil>.198
    INFO: ngram_search.c(1294): Eliminated 151 nodes before end node
    INFO: ngram_search.c(1399): Lattice has 648 nodes, 2504 links
    INFO: ps_lattice.c(1368): Normalizer P(O) = alpha(<sil>:198:232) = -1522478
    INFO: ps_lattice.c(1403): Joint P(O,S) = -1522705 P(S|O) = -227
    INFO: ngram_search.c(890): bestpath 0.00 CPU 0.001 xRT
    INFO: ngram_search.c(893): bestpath 0.00 wall 0.001 xRT
    2014-12-12 22:02:03.846 Sample Tests[4176:327509] Pocketsphinx heard “BLUE” with a score of (-227) and an utterance ID of 13.
    2014-12-12 22:02:03.846 Sample Tests[4176:327172] Flite sending interrupt speech request.
    2014-12-12 22:02:03.847 Sample Tests[4176:327172] The received hypothesis is BLUE with a score of -227 and an ID of 13
    2014-12-12 22:02:03.847 Sample Tests[4176:327172] it’s a good word
    2014-12-12 22:02:03.847 Sample Tests[4176:327172] from check the: BLUE
    2014-12-12 22:02:03.847 Sample Tests[4176:327172] It’s not a match
    2014-12-12 22:02:03.847 Sample Tests[4176:327172] Incorrect color: 2
    2014-12-12 22:02:03.847 Sample Tests[4176:327172] Incorrect word: 0
    2014-12-12 22:02:03.847 Sample Tests[4176:327172] put label 1418446923.847493
    2014-12-12 22:02:03.847 Sample Tests[4176:327172] Duration: 3.975915
    2014-12-12 22:02:03.847 Sample Tests[4176:327172] Taking the test
    2014-12-12 22:02:03.847 Sample Tests[4176:327172] next set
    2014-12-12 22:02:03.847 Sample Tests[4176:327172] Stopping listening.
    INFO: ngram_search_fwdtree.c(432): TOTAL fwdtree 0.87 CPU 0.051 xRT
    INFO: ngram_search_fwdtree.c(435): TOTAL fwdtree 37.28 wall 2.198 xRT
    INFO: ngram_search_fwdflat.c(176): TOTAL fwdflat 0.09 CPU 0.006 xRT
    INFO: ngram_search_fwdflat.c(179): TOTAL fwdflat 0.09 wall 0.005 xRT
    INFO: ngram_search.c(307): TOTAL bestpath 0.01 CPU 0.001 xRT
    INFO: ngram_search.c(310): TOTAL bestpath 0.01 wall 0.001 xRT
    2014-12-12 22:02:03.861 Sample Tests[4176:327172] No longer listening.
    2014-12-12 22:02:03.862 Sample Tests[4176:327172] Response Time
    2014-12-12 22:02:03.862 Sample Tests[4176:327172] 3.748256
    2014-12-12 22:02:03.862 Sample Tests[4176:327172] 2.49415
    2014-12-12 22:02:03.862 Sample Tests[4176:327172] 2.688575
    2014-12-12 22:02:03.862 Sample Tests[4176:327172] 2.690115
    2014-12-12 22:02:03.862 Sample Tests[4176:327172] 2.296485
    2014-12-12 22:02:03.862 Sample Tests[4176:327172] 2.307083
    2014-12-12 22:02:03.862 Sample Tests[4176:327172] 4.431677
    2014-12-12 22:02:03.863 Sample Tests[4176:327172] 2.814281
    2014-12-12 22:02:03.863 Sample Tests[4176:327172] 2.816215
    2014-12-12 22:02:03.863 Sample Tests[4176:327172] 3.459378
    2014-12-12 22:02:03.863 Sample Tests[4176:327172] 2.936886
    2014-12-12 22:02:03.863 Sample Tests[4176:327172] 3.975915
    2014-12-12 22:02:03.863 Sample Tests[4176:327172] reaction time: 3.748256
    2014-12-12 22:02:03.863 Sample Tests[4176:327172] first time
    2014-12-12 22:02:03.863 Sample Tests[4176:327172] reaction time: 2.49415
    2014-12-12 22:02:03.863 Sample Tests[4176:327172] reaction time: 2.688575
    2014-12-12 22:02:03.863 Sample Tests[4176:327172] reaction time: 2.690115
    2014-12-12 22:02:03.864 Sample Tests[4176:327172] reaction time: 2.296485
    2014-12-12 22:02:03.864 Sample Tests[4176:327172] reaction time: 2.307083
    2014-12-12 22:02:03.864 Sample Tests[4176:327172] reaction time: 4.431677
    2014-12-12 22:02:03.864 Sample Tests[4176:327172] reaction time: 2.814281
    2014-12-12 22:02:03.864 Sample Tests[4176:327172] reaction time: 2.816215
    2014-12-12 22:02:03.864 Sample Tests[4176:327172] reaction time: 3.459378
    2014-12-12 22:02:03.864 Sample Tests[4176:327172] reaction time: 2.936886
    2014-12-12 22:02:03.864 Sample Tests[4176:327172] reaction time: 3.975915
    2014-12-12 22:02:03.864 Sample Tests[4176:327172] in meanOf
    2014-12-12 22:02:03.864 Sample Tests[4176:327172] result: 3.748256
    2014-12-12 22:02:03.865 Sample Tests[4176:327172] running total: 3.748256
    2014-12-12 22:02:03.865 Sample Tests[4176:327172] result: 2.494150
    2014-12-12 22:02:03.865 Sample Tests[4176:327172] running total: 6.242406
    2014-12-12 22:02:03.865 Sample Tests[4176:327172] result: 2.688575
    2014-12-12 22:02:03.865 Sample Tests[4176:327172] running total: 8.930981
    2014-12-12 22:02:03.865 Sample Tests[4176:327172] result: 2.690115
    2014-12-12 22:02:03.865 Sample Tests[4176:327172] running total: 11.621096
    2014-12-12 22:02:03.865 Sample Tests[4176:327172] result: 2.296485
    2014-12-12 22:02:03.865 Sample Tests[4176:327172] running total: 13.917581
    2014-12-12 22:02:03.865 Sample Tests[4176:327172] result: 2.307083
    2014-12-12 22:02:03.865 Sample Tests[4176:327172] running total: 16.224664
    2014-12-12 22:02:03.866 Sample Tests[4176:327172] result: 4.431677
    2014-12-12 22:02:03.866 Sample Tests[4176:327172] running total: 20.656341
    2014-12-12 22:02:03.866 Sample Tests[4176:327172] result: 2.814281
    2014-12-12 22:02:03.866 Sample Tests[4176:327172] running total: 23.470622
    2014-12-12 22:02:03.866 Sample Tests[4176:327172] result: 2.816215
    2014-12-12 22:02:03.866 Sample Tests[4176:327172] running total: 26.286836
    2014-12-12 22:02:03.866 Sample Tests[4176:327172] result: 3.459378
    2014-12-12 22:02:03.866 Sample Tests[4176:327172] running total: 29.746214
    2014-12-12 22:02:03.866 Sample Tests[4176:327172] result: 2.936886
    2014-12-12 22:02:03.866 Sample Tests[4176:327172] running total: 32.683100
    2014-12-12 22:02:03.867 Sample Tests[4176:327172] result: 3.975915
    2014-12-12 22:02:03.867 Sample Tests[4176:327172] running total: 36.659015
    2014-12-12 22:02:03.867 Sample Tests[4176:327172] The average is 3.054918
    2014-12-12 22:02:03.867 Sample Tests[4176:327172] adjust high 2.431677
    2014-12-12 22:02:03.867 Sample Tests[4176:327172] adjust LOW 0.296485
    2014-12-12 22:02:03.867 Sample Tests[4176:327172] adjust average 1.054918
    2014-12-12 22:02:03.867 Sample Tests[4176:327172] the Reaction Worst: 2.43
    2014-12-12 22:02:03.867 Sample Tests[4176:327172] the Reaction Best: 0.30
    2014-12-12 22:02:03.867 Sample Tests[4176:327172] the AVERAGE: 1.05
    2014-12-12 22:02:03.868 Sample Tests[4176:327172] Colors: 4
    2014-12-12 22:02:03.868 Sample Tests[4176:327172] Words: 6
    2014-12-12 22:02:03.868 Sample Tests[4176:327172] I’m running flite
    2014-12-12 22:02:03.931 Sample Tests[4176:327172] I’m done running flite and it took 0.062881 seconds
    2014-12-12 22:02:03.931 Sample Tests[4176:327172] Flite audio player was nil when referenced so attempting to allocate a new audio player.
    2014-12-12 22:02:03.931 Sample Tests[4176:327172] Loading speech data for Flite concluded successfully.
    2014-12-12 22:02:03.948 Sample Tests[4176:327172] Stopped listening.
    2014-12-12 22:02:03.949 Sample Tests[4176:327172] Flite sending suspend recognition notification.
    2014-12-12 22:02:03.949 Sample Tests[4176:327172] Has started speaking
    2014-12-12 22:02:07.188 Sample Tests[4176:327172] AVAudioPlayer did finish playing with success flag of 1
    2014-12-12 22:02:07.338 Sample Tests[4176:327172] Flite sending resume recognition notification.
    2014-12-12 22:02:07.840 Sample Tests[4176:327172] Has finished speaking

    #1023531
    Halle Winkler
    Politepix

    Good to hear it. Something like this:

    ZERO
    ZERO(2)

    Just means that the dictionary has multiple pronunciations for some words. Some people say ZEE-ROH and some say ZEH-ROH so the (2) represents an alternate pronunciation which will be successfully heard by your app. If you open up your .dic file in a text editor, you can see the specific pronunciations if you are curious.

    #1023534
    boombatz
    Participant

    Cool. Thanks.
    One more quick question.
    I’m getting an occasional “Static-like” one-click sound when slt speaks. This did not happen in 1.0. It happens on both my iphone test devices (an iphone 5s and a 6) it happens in the simulator on my iMac and MBP retina. Do you Have any suggestions for trouble shooting this?
    I’m running iOs 8.1 and OX 10.10.1

    #1023535
    Halle Winkler
    Politepix

    Sorry, no – this is going to be something about the app setup (maybe something is interfering with the audio session) but I don’t have any insight into it. I haven’t encountered it in 2.x testing.

    You can submit it as a bug if you can cause it to replicate in the sample app with very small changes (as small as possible) in the sample app code, and tell me what the exact line changes are here, as well as telling me the device and iOS version you saw it with. If I can replicate it by recreating your (again, as small as possible) changes, I’ll investigate it as a 2.x bug. If the changes are too extensive and involve too many unrelated code areas it won’t be useful as a replication example, so it’s really worthwhile to keep things minimal.

    #1023536
    boombatz
    Participant

    I’ll try to replicate it in a small app. That will be indicative if I *can’t* replicate it.

    #1023537
    Halle Winkler
    Politepix

    Exactly, that’s the main reason for that policy. Most outcomes are either that the app-related issue becomes apparent (in which case you can tell me and there might be a way to help or find out more), or it replicates and I can see it locally. It’s challenging to think of a case in which someone was experiencing a framework bug that couldn’t replicate in the sample app, but the process of trying didn’t clarify what aspect of their app was related to it.

    #1023538
    Halle Winkler
    Politepix

    I’ll try to replicate it in a small app.

    Make sure to use the sample app since I won’t be able to run a newly-made app.

    #1023539
    boombatz
    Participant

    Will do.

    #1023581
    boombatz
    Participant

    HI,
    So I’ve been trying to figure out why I have a popping noise when flightcontroller starts to speak (I’ve been using slt). I’m stumped and it works fine in the sample app.

    I switched to rms and all of the noise went away!!! Clean as can be.
    Wow.

Viewing 17 posts - 1 through 17 (of 17 total)
  • You must be logged in to reply to this topic.