Overview

{% if sim_wins_data and sim_wins_data.players and sim_wins_data.rounds %}
{% endif %}
{% for trajectory in trajectories_by_round.get(1, []) %} {% endfor %} {% for round_data in metadata.rounds %} {% if trajectories_by_round.get(round_data.round_num) %} {% for trajectory in trajectories_by_round[round_data.round_num] %} {% endfor %} {% else %} {% for trajectory in trajectories_by_round.get(1, []) %} {% endfor %} {% endif %} {% endfor %}
Round Winner Results{{ trajectory.player_id }}Actions
{{ round_data.round_num }} {% if round_data.results and round_data.results.winner %}
{{ round_data.results.winner }} {% if round_data.results.winner_percentage %} {{ round_data.results.winner_percentage }}% {% endif %} {% if round_data.results.p_value is not none %} p={{ "%.2f"|format(round_data.results.p_value) }} {% endif %}
{% else %} - {% endif %}
{% if round_data.results and round_data.results.sorted_scores %}
{% for player, score in round_data.results.sorted_scores %} {{ player }}: {{ score }} {% endfor %}
{% else %} - {% endif %}
{{ trajectory.api_calls }}/${{ "%.2f"|format(trajectory.cost) }} {% if trajectory.exit_status %} {{ trajectory.exit_status }} {% else %} - {% endif %}
-
{% if metadata.main_log_path %}
Tournament Log
{% endif %} {% if metadata.all_logs %} {% for log_name, log_data in metadata.all_logs.items() %} {% if log_name != "Tournament Log" %}
{{ log_name }} {% if log_data.path %} {% endif %}
{% endif %} {% endfor %} {% endif %}