softwareweaver/MusicGen
0
1{% extends "base.html" %}2{% block content %}3 4<h1>Results for survey #{{signature}}</h1>5<p>Checkout <a href="{{url_for('survey', signature=signature)}}">the survey page</a> for details on the models.</p>6<p>The following users voted:7 {% for user in users %}8 <span class="special">{{user}}</span>9 {% endfor %}10 11{% for model in models %}12<h3>{{model['sig']}} ({{model['samples']}} samples)</h3>13<p>Ratings: {{model['mean_rating']}} ± {{model['std_rating']}}</p>14 15{% endfor %}16 17{% endblock %}18 