Actions
Task #4213
openTask #3679: RA3d - Revision of positional parameters and weighting
Task #4159: Revision of continuous positional parameters
Tweak current position parameters computation
Status:
Assigned
Priority:
Normal
Assignee:
Target version:
Start date:
02.06.2017
Due date:
% Done:
0%
Estimated time:
Description
Since the experiment with syllable-based experiments with positional features, described on wiki, show quite good results, it can be used as the baseline for ARTIC features modification. The aim is that instead of re-implementing positional features (which will require data image changes), we will tweak the current computation scheme (using the current set of features). In this way, we can achieve fast improvement (not perfect, though!) with low cost of coding.
The original cost computation is- pos_cost = beg(w) * abs(beg(t) - beg(u)) + mid(w) * abs(mid(t) - mid(u)) + end(w) * abs(end(t) - end(u))
- weight = 7 for all positions
- pos_cost_1 = pos_cost + 150 * abs(end(t) - end(u))
- weight = 7
- pos_cost_2 = pos_cost + 999 * end(u) * abs(end(t) - mid(u))
- weight = 9
- for match on both unit and target being prosodic word transitional, the tweaked addition is set to 0
- pos_cost_3 = pos_cost + 999 * end(u) * abs(end(t) - end(u))
- weight = 9
- beg(u), mid(u) and end(u) are the position weights of the candidate unit u related to the beginning. middle and end of its prosodic word
- beg(t), mid(t) and end(t) are the position weights of the target unit t related to the beginning. middle and end of its prosodic word
- beg(w), mid(w) and end(w) are the corresponding weights, unit and target independent
- pos_cost_3: lowers the number of position failures from 134k to approx. 11k (winner).
- pos_cost_2: still displays more than 70k position failures.
- pos_cost_1: lowers the number of position failures from 134k to approx. 17k.
The key tak is how to further improve pos_cost_3 scheme.
Related issues
Updated by Tihelka Dan over 7 years ago
- Related to Task #4160: Discrete positional parameters added
Actions