<?xml version="1.0" encoding="UTF-8"?>
	<rss version="2.0"
		xmlns:content="http://purl.org/rss/1.0/modules/content/"
		xmlns:wfw="http://wellformedweb.org/CommentAPI/"
		xmlns:dc="http://purl.org/dc/elements/1.1/"
		xmlns:atom="http://www.w3.org/2005/Atom"

			>

	<channel>

		<title>[Resolved] Not detecting correct letter / number &#8211; Politepix</title>
		<atom:link href="/forums/topic/not-detecting-correct-letter-number/feed/" rel="self" type="application/rss+xml" />
		<link>/forums/topic/not-detecting-correct-letter-number/feed/</link>
		<description></description>
		<lastBuildDate>Tue, 23 Apr 2024 14:56:22 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.9</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>/forums/topic/not-detecting-correct-letter-number/#post-1023359</guid>
					<title><![CDATA[[Resolved] Not detecting correct letter / number]]></title>
					<link>/forums/topic/not-detecting-correct-letter-number/#post-1023359</link>
					<pubDate>Wed, 10 Dec 2014 18:52:51 +0000</pubDate>
					<dc:creator>foobar8675</dc:creator>

					<description>
						<![CDATA[
						<p>Hello Halle,</p>
<p>I&#8217;m trying to use OE to recognize numbers and the alphabet. I replaced the words in the OE example to the following<br />
        NSArray *firstLanguageArray = @[<br />
                                        @&#8221;ONE&#8221;,<br />
                                        @&#8221;TWO&#8221;,<br />
                                        @&#8221;THREE&#8221;,<br />
                                        @&#8221;FOUR&#8221;,<br />
                                        @&#8221;FIVE&#8221;,<br />
                                        @&#8221;SIX&#8221;,<br />
                                        @&#8221;SEVEN&#8221;,<br />
                                        @&#8221;EIGHT&#8221;,<br />
                                        @&#8221;NINE&#8221;,<br />
                                        @&#8221;A&#8221;,<br />
                                        @&#8221;B&#8221;,<br />
                                        @&#8221;C&#8221;,<br />
                                        @&#8221;D&#8221;,<br />
                                        @&#8221;E&#8221;,<br />
                                        @&#8221;F&#8221;,<br />
                                        @&#8221;G&#8221;,<br />
                                        @&#8221;H&#8221;,<br />
                                        @&#8221;I&#8221;,<br />
                                        @&#8221;JAY&#8221;,<br />
                                        @&#8221;KAY&#8221;,<br />
                                        @&#8221;ELLE&#8221;,<br />
                                        @&#8221;EM&#8221;,<br />
                                        @&#8221;EN&#8221;,<br />
                                        @&#8221;OH&#8221;,<br />
                                        @&#8221;PEE&#8221;,</p>
<p>                                        @&#8221;QUE&#8221;,<br />
                                        @&#8221;ARE&#8221;,<br />
                                        @&#8221;S&#8221;,<br />
                                        @&#8221;TEE&#8221;,<br />
                                        @&#8221;YOU&#8221;,<br />
                                        @&#8221;VEE&#8221;,<br />
                                        @&#8221;DOUBLEYOU&#8221;,<br />
                                        @&#8221;EX&#8221;,<br />
                                        @&#8221;WHY&#8221;,<br />
                                        @&#8221;ZEE&#8221;,</p>
<p>                                        ];</p>
<p>and am noticing the incorrect result come up pretty frequently. Suggestions?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>/forums/topic/not-detecting-correct-letter-number/#post-1023360</guid>
					<title><![CDATA[Reply To: [Resolved] Not detecting correct letter / number]]></title>
					<link>/forums/topic/not-detecting-correct-letter-number/#post-1023360</link>
					<pubDate>Wed, 10 Dec 2014 19:17:14 +0000</pubDate>
					<dc:creator>Halle Winkler</dc:creator>

					<description>
						<![CDATA[
						<p>This is unfortunately a thing which gets bad results with speech recognition. Most of the words are a single syllable, many of those syllables rhyme with each other (three, e, d, g, p) or nearly rhyme (eight and a and j), and they are contextless – they can arrive in any order (in contrast to phrases of words where we can say that some combinations are more likely, or required by a rule, versus others). You can probably find several other discussions on these forums about this, but they mostly consist of me making this approximate statement.</p>
<p>You can fix the fact that the letters are spelled phonetically, since that will prevent them from being found in the lookup list and given multiple pronunciations if there are some, but the main way to improve would be a specification change of some kind (organize your app so that only a few of these items are in any given language model or grammar – you will still encounter the e/d/g/p issue, but it will be a bit reduced).</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>/forums/topic/not-detecting-correct-letter-number/#post-1023376</guid>
					<title><![CDATA[Reply To: [Resolved] Not detecting correct letter / number]]></title>
					<link>/forums/topic/not-detecting-correct-letter-number/#post-1023376</link>
					<pubDate>Thu, 11 Dec 2014 00:04:16 +0000</pubDate>
					<dc:creator>foobar8675</dc:creator>

					<description>
						<![CDATA[
						<p>Thanks for responding Halle. Do you think rulesorama might work? I was thinking, for example, if a user spelled the name for one of 3 users :<br />
Tom<br />
Ben<br />
Mike</p>
<p>the grammer could look like</p>
<p>ThisWillBeSaidOnce : @[<br />
@{ OneOfTheseWillBeSaidOnce : @[@&#8221;T&#8221;, @&#8221;B&#8221;, @&#8221;M&#8221;]},<br />
@{ OneOfTheseCanBeSaidOnce : @[@&#8221;O&#8221;, @&#8221;E&#8221;, @&#8221;I&#8221;]},<br />
@{ OneOfTheseCanBeSaidOnce : @[@&#8221;M&#8221;, @&#8221;N&#8221;, @&#8221;K&#8221;]},<br />
@{ OneOfTheseCanBeSaidOnce : @[@&#8221;E&#8221;]},</p>
<p>Or is it obvious to everyone but me that this would that fall apart with a larger number of names (say over 100)?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>/forums/topic/not-detecting-correct-letter-number/#post-1023380</guid>
					<title><![CDATA[Reply To: [Resolved] Not detecting correct letter / number]]></title>
					<link>/forums/topic/not-detecting-correct-letter-number/#post-1023380</link>
					<pubDate>Thu, 11 Dec 2014 08:54:10 +0000</pubDate>
					<dc:creator>Halle Winkler</dc:creator>

					<description>
						<![CDATA[
						<p>I would just get a corpus of 100/200/300 names and try it out.</p>
<p>Your ruleset should look like this I think:</p>
<p>OneOfTheseWillBeSaidOnce : @[<br />
@{ ThisWillBeSaidOnce : @[@”T”, @”O”, @”M”]},<br />
@{ ThisWillBeSaidOnce : @[@”B”, @”E”, @”N”]},<br />
@{ ThisWillBeSaidOnce : @[@”M”, @”I”, @”K”,@”E”]},</p>
<p>etc. I think that will do the recognition you intend, and limit the permutations to a number vaguely in the same ballpark as your corpus size. Plus it&#8217;s pretty easy to automate the dynamic generation.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>/forums/topic/not-detecting-correct-letter-number/#post-1024086</guid>
					<title><![CDATA[Reply To: [Resolved] Not detecting correct letter / number]]></title>
					<link>/forums/topic/not-detecting-correct-letter-number/#post-1024086</link>
					<pubDate>Tue, 06 Jan 2015 17:57:56 +0000</pubDate>
					<dc:creator>Halle Winkler</dc:creator>

					<description>
						<![CDATA[
						<p>Take a look at OpenEars 2.01 out today, which has a fix which should improve accuracy in some cases.</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

