Wiki
linter / quality (push) Successful in 5m1s
tests / ci (8.4) (push) Successful in 5m8s
tests / ci (8.5) (push) Successful in 6m31s

This commit is contained in:
2026-09-15 19:44:58 +02:00
parent ca6c9fe38c
commit 6d4fdffee9
82 changed files with 29906 additions and 151 deletions
+3
View File
@@ -7,6 +7,7 @@ export type Iteration = {
export type Dataset = {
label: string;
inputCount: number;
data: DatasetPoint[];
defaultLearningRate?: number;
defaultMinError?: number;
@@ -24,3 +25,5 @@ export type DatasetPoint = {
export type InitializationMethod = 'zeros' | 'random';
export type PerceptronType = 'simple' | 'gradientdescent' | 'adaline' | 'monolayer' | 'multilayer';
export type ValidationErrors = Record<string, string>;