implement calibration scoring and display features

This commit is contained in:
averel10
2026-03-27 08:34:50 +01:00
parent 9a54d91a4f
commit 5d50926b96
10 changed files with 508 additions and 112 deletions

View File

@@ -1,6 +1,6 @@
'use client';
import { DatasetEntryForAnnotation } from '@/lib/dialects';
import { DatasetEntryForAnnotation, DIALECT_LABELS } from '@/lib/dialects';
import { useEffect, useRef } from 'react';
interface AnnotationSidebarNavigationProps {
@@ -77,7 +77,7 @@ export default function AnnotationSidebarNavigation({
/>
{/* Entry number and filename */}
<span className="truncate">
{`Sample ${index + 1}`}
{`Sample ${index + 1} - ${DIALECT_LABELS[entry.dialect]}`}
</span>
</div>
</button>