aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_elements/hidden-layer
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
parentab189290f561656996a6b39cdc2e4ae7c48b3b19 (diff)
Ažurirana komponenta form-model, izbrisana komponenta hidden-layer.
Diffstat (limited to 'frontend/src/app/_elements/hidden-layer')
-rw-r--r--frontend/src/app/_elements/hidden-layer/hidden-layer.component.css17
-rw-r--r--frontend/src/app/_elements/hidden-layer/hidden-layer.component.html43
-rw-r--r--frontend/src/app/_elements/hidden-layer/hidden-layer.component.spec.ts25
-rw-r--r--frontend/src/app/_elements/hidden-layer/hidden-layer.component.ts18
4 files changed, 0 insertions, 103 deletions
diff --git a/frontend/src/app/_elements/hidden-layer/hidden-layer.component.css b/frontend/src/app/_elements/hidden-layer/hidden-layer.component.css
deleted file mode 100644
index dd96e0c5..00000000
--- a/frontend/src/app/_elements/hidden-layer/hidden-layer.component.css
+++ /dev/null
@@ -1,17 +0,0 @@
-.container{
-
- text-align: justify;
- border: 1px solid white;
- border-radius: 5px;
- padding: 0;
- color: white!important;
- background-color: var(--ns-bg-dark-100) !important;
-
-}
-mat-form-field{
- font-size: 10px;
-}
-input{
- background-color: #004165;
- color: aliceblue;
-} \ No newline at end of file
diff --git a/frontend/src/app/_elements/hidden-layer/hidden-layer.component.html b/frontend/src/app/_elements/hidden-layer/hidden-layer.component.html
deleted file mode 100644
index 16c41b28..00000000
--- a/frontend/src/app/_elements/hidden-layer/hidden-layer.component.html
+++ /dev/null
@@ -1,43 +0,0 @@
-<div class="container">
- <div>
- <label>Skriveni sloj {{hiddenLayerNum}}</label>
- </div>
- <mat-form-field appearance="fill">
- <mat-label>Aktivaciona funkcija</mat-label>
- <mat-select matNativeControl required [formControl]="selectActivationFormControl">
- <mat-option value="saab">Relu</mat-option>
- <mat-option value="mercedes">Sigmoid</mat-option>
- <mat-option value="audi">Softmax</mat-option>
- </mat-select>
- <mat-error *ngIf="selectActivationFormControl.hasError('required')">
- Obavezno polje
- </mat-error>
- </mat-form-field>
-<br>
-<div class="row">
- <label style="width: 7rem;" for="hiddenLayersNeurons">Broj čvorova:</label> <input type="number" min="1" class="form-control" name="hiddenLayersNeurons" style="max-width: 5rem;">
-</div>
- <br>
- <mat-form-field appearance="fill">
- <mat-label>Regularizacija</mat-label>
- <mat-select matNativeControl required [formControl]="selectRegularisationFormControl">
- <mat-option value="l1">L1</mat-option>
- <mat-option value="l2">L2</mat-option>
- </mat-select>
- <mat-error *ngIf="selectRegularisationFormControl.hasError('required')">
- Obavezno polje
- </mat-error>
- </mat-form-field>
- <br>
- <mat-form-field appearance="fill">
- <mat-label>Stopa regularizacije</mat-label>
- <mat-select matNativeControl required [formControl]="selectRRateFormControl">
- <mat-option value="saab">0.001</mat-option>
- <mat-option value="mercedes">0.01</mat-option>
- <mat-option value="audi">0.1</mat-option>
- </mat-select>
- <mat-error *ngIf="selectRRateFormControl.hasError('required')">
- Obavezno polje
- </mat-error>
- </mat-form-field>
-</div>
diff --git a/frontend/src/app/_elements/hidden-layer/hidden-layer.component.spec.ts b/frontend/src/app/_elements/hidden-layer/hidden-layer.component.spec.ts
deleted file mode 100644
index 103e4539..00000000
--- a/frontend/src/app/_elements/hidden-layer/hidden-layer.component.spec.ts
+++ /dev/null
@@ -1,25 +0,0 @@
-import { ComponentFixture, TestBed } from '@angular/core/testing';
-
-import { HiddenLayerComponent } from './hidden-layer.component';
-
-describe('HiddenLayerComponent', () => {
- let component: HiddenLayerComponent;
- let fixture: ComponentFixture<HiddenLayerComponent>;
-
- beforeEach(async () => {
- await TestBed.configureTestingModule({
- declarations: [ HiddenLayerComponent ]
- })
- .compileComponents();
- });
-
- beforeEach(() => {
- fixture = TestBed.createComponent(HiddenLayerComponent);
- component = fixture.componentInstance;
- fixture.detectChanges();
- });
-
- it('should create', () => {
- expect(component).toBeTruthy();
- });
-});
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);
-}