Given a list of candidate words (e.g. those most semantically similar to target), look at only those whose vowel-consonant structure matches the target.
Score as average distance between phonemes at corresponding positions. For example:
distance(cat, rad) = avg(distance(c,r) + distance(a,a) + distance(t,d))
Given a list of candidate words (e.g. those most semantically similar to target), look at only those whose vowel-consonant structure matches the target.
Score as average distance between phonemes at corresponding positions. For example:
distance(cat, rad) = avg(distance(c,r) + distance(a,a) + distance(t,d))