diff options
author | TAMARA JERINIC <tamara.jerinic@gmail.com> | 2022-04-17 23:41:44 +0200 |
---|---|---|
committer | Danijel Anđelković <adanijel99@gmail.com> | 2022-04-23 00:53:15 +0200 |
commit | bf60c9ef49b9b0c524dfd86a07c6a0a10e9b62e9 (patch) | |
tree | 32b62acf90778f9d3878361b7a7561de93aa4fb4 /frontend/src/app/app-routing.module.ts | |
parent | 185d940422ed0f44ab5ea1be0bb04cb644d7f577 (diff) |
Uklonjen datum iz treniraj model, broj uzoraka po iteraciji je predstavljen stepenom dvojke, dodat je broj epoha, promenjen naziv funkcije gubitka, dodata ruta.
Diffstat (limited to 'frontend/src/app/app-routing.module.ts')
-rw-r--r-- | frontend/src/app/app-routing.module.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/frontend/src/app/app-routing.module.ts b/frontend/src/app/app-routing.module.ts index 8aadb8bf..4ffec95c 100644 --- a/frontend/src/app/app-routing.module.ts +++ b/frontend/src/app/app-routing.module.ts @@ -21,6 +21,7 @@ const routes: Routes = [ /*{ path: 'add-model', component: AddModelComponent, data: { title: 'Dodaj model' } },*/ { path: 'experiment', component: ExperimentComponent, data: { title: 'Dodaj eksperiment' } }, { path: 'training', component: TrainingComponent, data: { title: 'Treniraj model' } }, + { path: 'training/:id', component: TrainingComponent, data: { title: 'Treniraj model' } }, { path: 'my-datasets', component: MyDatasetsComponent, canActivate: [AuthGuardService], data: { title: 'Moji izvori podataka' } }, { path: 'my-models', component: MyModelsComponent, canActivate: [AuthGuardService], data: { title: 'Moji modeli' } }, { path: 'my-predictors', component: MyPredictorsComponent, canActivate: [AuthGuardService], data: { title: 'Moji trenirani modeli' } }, |