{% extends "Buckeye/index.html" %} {% block content %}

Redo formant tracking

Current settings

Ceiling: {{ Token.getCeiling }}
Number of Formants: {{ Token.getNFormants }}
Sound file for manual analysis
{% csrf_token %} {{ form.as_table }}
{% if user.is_superuser %} Change word token details {% endif %} {% if Token.WordType.isWord %} {% endif %}
Preceding context Word Following context
{% for t in Token.getPreviousContext %} {{ t }} {% endfor %} {{Token.WordType.Label}} {% for t in Token.getFollowingContext %} {{ t }} {% endfor %}
Previous Conditional Probability {{Token.getPreviousCondProb}}
Previous Speaking Rate {{Token.getPreviousSpeakingRate}}
Following Conditional Probability {{Token.getFollowingCondProb}}
Following Speaking Rate {{Token.getFollowingSpeakingRate}}
{% if Token.WordType.isWord %}

Lexical details

Underlying Represenation {{Token.WordType.getUR}}
Frequency {{Token.WordType.getFreq}}
Phonotactic probability {{Token.WordType.getPhonoProb}}
Phonotactic source {{Token.WordType.getPhonoSource}}
Neighborhood density {{Token.WordType.getND}}
FWND {{Token.WordType.getFWND}}
Stress vowel {{Token.WordType.getStressVowel}}

Token details

Dialog {{Token.Dialog}}
Surface Represenation {{Token.getSR}}
Surface Ends {% for t in Token.segmenttoken_set.all %} {{t.getEnd}}, {% endfor %}
Category {{Token.Category.Label}}
Stress Vowel F1 {{Token.getStrF1}}
Stress Vowel F2 {{Token.getStrF2}}
Repetitions {{Token.getRepetitions}}
Semantic Predictability {{Token.getSemContext}}

Speaker details

Speaker {{Token.Dialog.Speaker.Number}}
Gender {{Token.Dialog.Speaker.Gender}}
Age {{Token.Dialog.Speaker.Age}}
Number of formants {{Token.Dialog.Speaker.NumFormants}}
Formant ceiling {{Token.Dialog.Speaker.Ceiling}}
Vowel center {{Token.Dialog.Speaker.getCenter }}
Avg. Speaking Rate {{Token.Dialog.Speaker.getAvgSpeakingRate }}
{%endif%} {% endblock content %}