TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Sukhotin's Algorithm

23 pointsby budualmost 15 years ago

3 comments

tanseyalmost 15 years ago
Very cool algorithm. I just implemented and tested it for fun: <a href="http://www.nashcoding.com/?p=51" rel="nofollow">http://www.nashcoding.com/?p=51</a><p>Basically, all it's doing is tracking the letter with maximum frequency and subtracting 2x its occurrences next to every other letter. If there's a letter that's still positive in frequency, it keeps going, otherwise it assumes all the vowels have been found. Clever!
评论 #1496603 未加载
daivdalmost 15 years ago
If I understand this correctly, saying that vowels tend to be close to vowels is just a special case of using n-grams. If you have a fingerprint with the common n-gram distribution for the target language (or even subject), you get an optimization problem where you try to guess the substitutions such that the angle between the fingerprint vectors are minimized.<p>If it cannot be solved analytically, it seems something like a GA should solve it well.<p>Is there a standard method for solving substitution cryptos?
评论 #1495563 未加载
p3ll0nalmost 15 years ago
A main problem for speaker independent automatic speech recognition systems is the variability of the speech signal - i.e. the same sequence of words uttered by different speakers or even uttered several times by one speaker never results in identical speech signals.<p>ROS (rate of speech) is one of the primary contributors to this variably and some recent research (<a href="http://www.ee.columbia.edu/~dpwe/papers/PfauR98-spkrate.pdf" rel="nofollow">http://www.ee.columbia.edu/~dpwe/papers/PfauR98-spkrate.pdf</a>) has shown that good estimates of speaking rate can be obtained using vowel detection as vowels in general correspond to syllable nuclei.<p>I wonder if Sukhotin's algorithm could be modified to improve upon this work?
评论 #1495569 未加载