TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Sukhotin's Algorithm

23 点作者 budu将近 15 年前

3 条评论

tansey将近 15 年前
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 未加载
daivd将近 15 年前
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 未加载
p3ll0n将近 15 年前
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 未加载