aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_data
diff options
context:
space:
mode:
authorTAMARA JERINIC <tamara.jerinic@gmail.com>2022-04-25 03:40:36 +0200
committerTAMARA JERINIC <tamara.jerinic@gmail.com>2022-04-25 03:40:36 +0200
commit044ef1a76cf2f53b0dd86c4a77fabd01a81e93ad (patch)
tree4f24f28289fae2b8e7bfa379fd8562837510deda /frontend/src/app/_data
parentaee2cd43578a255f5a0e346ac8955f663a673cca (diff)
Ažurirane komponente form-model i hidden-layer.
Diffstat (limited to 'frontend/src/app/_data')
-rw-r--r--frontend/src/app/_data/Model.ts6
1 files changed, 4 insertions, 2 deletions
diff --git a/frontend/src/app/_data/Model.ts b/frontend/src/app/_data/Model.ts
index b273f56a..6cef09e5 100644
--- a/frontend/src/app/_data/Model.ts
+++ b/frontend/src/app/_data/Model.ts
@@ -21,7 +21,9 @@ export default class Model {
public outputLayerActivationFunction: ActivationFunction = ActivationFunction.Sigmoid,
public uploaderId: string = '',
public metrics: string[] = [], // TODO add to add-model form
- public epochs: number = 5 // TODO add to add-model form
+ public epochs: number = 5, // TODO add to add-model form
+ public inputColNum:number=5,
+ public learningRate:number=0.01
) { }
}
@@ -156,4 +158,4 @@ export enum MetricsMultiClassification {
Precision = 'precision_score',
Recall = 'recall_score',
F1 = 'f1_score',
-}
+} \ No newline at end of file