diff options
author | Sonja Galovic <galovicsonja@gmail.com> | 2022-04-28 21:30:17 +0200 |
---|---|---|
committer | Sonja Galovic <galovicsonja@gmail.com> | 2022-04-28 21:30:17 +0200 |
commit | d2a4ea35188e62a9885a9ceb2361ad1c7d66e930 (patch) | |
tree | cc46300ee26c899c0962ae5660d9686cde3ff453 /frontend/src/app/_elements/form-model/form-model.component.html | |
parent | 3d10d260aea0b9faf399d009ed716191a915ade0 (diff) |
Podesavanja izgleda tabele sa statistikom i podacima. (column-table)
Diffstat (limited to 'frontend/src/app/_elements/form-model/form-model.component.html')
-rw-r--r-- | frontend/src/app/_elements/form-model/form-model.component.html | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/frontend/src/app/_elements/form-model/form-model.component.html b/frontend/src/app/_elements/form-model/form-model.component.html index 33ec85de..2139a1c0 100644 --- a/frontend/src/app/_elements/form-model/form-model.component.html +++ b/frontend/src/app/_elements/form-model/form-model.component.html @@ -94,8 +94,8 @@ <app-graph [model]="newModel" [inputCols]="newModel.inputColNum"></app-graph> </div> <div class="ns-row"> - - <div class ="ns-col" id="layers-control"> + + <div class="ns-col" id="layers-control"> <div>Broj Skrivenih Slojeva</div> <button class="btn-clear btn-icon" (click)="addLayer()"> <mat-icon>add</mat-icon> @@ -104,21 +104,21 @@ <button class="btn-clear btn-icon" (click)="removeLayer()"> <mat-icon>remove</mat-icon> </button> - + </div> <div class="break-1"></div> <div class="ns-col"> <mat-form-field appearance="fill"> <mat-label>Aktivaciona funkcija svih slojeva</mat-label> - - <mat-select [(ngModel)]="selectedActivation" (selectionChange)="changeAllActivation()" > + + <mat-select [(ngModel)]="selectedActivation" (selectionChange)="changeAllActivation()"> <mat-option *ngFor="let option of Object.keys(ActivationFunction); let optionName of Object.values(ActivationFunction)" [value]="option"> {{ optionName }} </mat-option> </mat-select> </mat-form-field> </div> - + <div class="ns-col"> <mat-form-field appearance="fill"> <mat-label>Broj Neurona svih slojeva</mat-label> @@ -136,7 +136,7 @@ </mat-select> </mat-form-field> </div> - + <div class="ns-col"> <mat-form-field appearance="fill"> <mat-label>Stopa regularizacije svih slojeva</mat-label> @@ -146,7 +146,7 @@ </mat-option> </mat-select> </mat-form-field> - </div> + </div> </div> @@ -177,7 +177,7 @@ <button class="btn-clear btn-icon" (click)="addNeuron(i)"> <mat-icon>add</mat-icon> </button> - <div class="col-2 text-center" >{{newModel.layers[i].neurons}}</div> + <div class="col-2 text-center">{{newModel.layers[i].neurons}}</div> <button class="btn-clear btn-icon" (click)="removeNeuron(i)"> <mat-icon>remove</mat-icon> </button> |