blob: 301476dece84a0ee8262ab9206559bf447c0b539 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
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);
}
|