Wiki
This commit is contained in:
@@ -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>;
|
||||
|
||||
Reference in New Issue
Block a user