Use correct naming for iteration and epoch
Some checks failed
linter / quality (push) Failing after 7s
tests / ci (8.4) (push) Failing after 4s
tests / ci (8.5) (push) Failing after 4s

This commit is contained in:
2026-03-21 09:46:35 +01:00
parent 6abb417430
commit a70b7670e7
8 changed files with 38 additions and 37 deletions

View File

@@ -34,4 +34,4 @@ export const colors = [
] as const;
export const gridColor = '#444';
export const gridColorBold = '#999';
export const gridColorBold = '#999';

View File

@@ -1,7 +1,7 @@
import type { Point } from "chart.js";
export type Iteration = {
iteration: number;
epoch: number;
exampleIndex: number;
weights: number[][][];
error: number;
@@ -10,7 +10,8 @@ export type Iteration = {
export type Dataset = {
label: string;
data: DatasetPoint[];
defaultLearningRate: number | undefined;
defaultLearningRate?: number;
defaultMinError?: number;
};
export type DatasetPoint = {