aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_elements/hidden-layer/hidden-layer.component.ts
diff options
context:
space:
mode:
authorTAMARA JERINIC <tamara.jerinic@gmail.com>2022-04-25 04:30:57 +0200
committerTAMARA JERINIC <tamara.jerinic@gmail.com>2022-04-25 04:31:57 +0200
commit636d944d3fabbf3b42b3b316756a52a777657d03 (patch)
tree8a72fa23e892f7df2c164793aaab8ce327cf067e /frontend/src/app/_elements/hidden-layer/hidden-layer.component.ts
parentab189290f561656996a6b39cdc2e4ae7c48b3b19 (diff)
Ažurirana komponenta form-model, izbrisana komponenta hidden-layer.
Diffstat (limited to 'frontend/src/app/_elements/hidden-layer/hidden-layer.component.ts')
-rw-r--r--frontend/src/app/_elements/hidden-layer/hidden-layer.component.ts18
1 files changed, 0 insertions, 18 deletions
diff --git a/frontend/src/app/_elements/hidden-layer/hidden-layer.component.ts b/frontend/src/app/_elements/hidden-layer/hidden-layer.component.ts
deleted file mode 100644
index 301476de..00000000
--- a/frontend/src/app/_elements/hidden-layer/hidden-layer.component.ts
+++ /dev/null
@@ -1,18 +0,0 @@
-import { Component, OnInit } from '@angular/core';
-import { FormControl, Validators } from '@angular/forms';
-import Model from 'src/app/_data/Model';
-@Component({
- selector: 'app-hidden-layer',
- templateUrl: './hidden-layer.component.html',
- styleUrls: ['./hidden-layer.component.css']
-})
-export class HiddenLayerComponent implements OnInit {
- hiddenLayerNum:number=1;
- constructor() { }
-
- ngOnInit(): void {
- }
- selectActivationFormControl = new FormControl('', Validators.required);
- selectRegularisationFormControl = new FormControl('', Validators.required);
- selectRRateFormControl = new FormControl('', Validators.required);
-}