{$i18n.t('Leaderboard')}
{rankedModels.length}
{ loadEmbeddingModel(); }} />
{#if loadingLeaderboard}
{/if} {#if (rankedModels ?? []).length === 0}
{$i18n.t('No models found')}
{:else} {#each rankedModels as model, modelIdx (model.id)} {/each}
{$i18n.t('RK')} {$i18n.t('Model')} {$i18n.t('Rating')} {$i18n.t('Won')} {$i18n.t('Lost')}
{model?.rating !== '-' ? modelIdx + 1 : '-'}
{model.name}
{model.name}
{model.rating}
{#if model.stats.won === '-'} - {:else} {model.stats.won} {/if}
{#if model.stats.lost === '-'} - {:else} {model.stats.lost} {/if}
{/if}
ⓘ {$i18n.t( 'The evaluation leaderboard is based on the Elo rating system and is updated in real-time.' )}
{$i18n.t( 'The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.' )}