{% extends "app/base_generic.html" %} {% load static %} {% block title %} {{ language.lang_name }} {% endblock %} # get me language {% block content %}

Language: {{ language.lang_name }}

Datasets

{% for dataset in language.datasets %} {% if dataset.pass1_mcd <= 6 %} {% elif dataset.pass1_mcd <= 7 %} {% elif dataset.pass1_mcd <= 8 %} {% else %} {% endif %} {% if not dataset.data_location %} {% else %} {% endif %} {% endfor %}
Data_id Source No. of sentences MCD Quality Hrs Gender Download
{{ dataset.data_id }} {{ dataset.source }} {{ dataset.pass1_utt }} {{ dataset.pass1_mcd|floatformat:2 }} Good Okay Bad}Something is wrong {{ dataset.duration|floatformat:2 }} {{ dataset.speaker_gender }} UnavailableDownload

Synthesizers

{% for synthesizer in language.synthesizers %} {% if synthesizer.mcd_rfs <= 5 %} {% elif synthesizer.mcd_rfs <= 6 %} {% elif synthesizer.mcd_rfs <= 7 %} {% else %} {% endif %} {% if not synthesizer.data_location or synthesizer.data_location == "na" %} {% else %} {% endif %} {% if not synthesizer.flite_location %} {% else %} {% endif %} {% endfor %}
synth_id data_id No. of sentences Hrs MCD base MCD rfs Quality Data Flite
{{ synthesizer.synth_id }} {{ synthesizer.dataset.data_id }} {{ synthesizer.rfs_utt }} {{ synthesizer.rfs_hrs|floatformat:2 }} {{ synthesizer.mcd_base|floatformat:2 }} {{ synthesizer.mcd_rfs|floatformat:2 }} Good Okay Bad}Something is wrong Unavailable Download Unavailable Download


Listen to samples

{% for sample in language.samples %}

Text: {{ sample.text }}

Pronunciation: {{ sample.pronunciation }}

{% for synth_sample in sample.synthesizer_samples %}

{{ synth_sample.synth.synth_id }}

{% endfor %}
{% endfor %}

Synthesize your text!

{% csrf_token %} {{ form.as_p }}
{% if output_file %} {% endif %}

Please wait while we synthesize your text

Loading...
{% endblock %}