diff options
author | Danijel Andjelkovic <adanijel99@gmail.com> | 2022-04-06 13:08:32 +0200 |
---|---|---|
committer | Danijel Andjelkovic <adanijel99@gmail.com> | 2022-04-06 13:08:32 +0200 |
commit | af3333a77e254b3268de38ec397921b43f357949 (patch) | |
tree | 0e41a18645feb0b841d276a4e0ae3efdf38b5157 /frontend/src/app/_data/Experiment.ts | |
parent | 19fd492a03ea48571d6aaab9e75108a82599ef0a (diff) |
Dodao stranicu za eksperimente, ova stranica je zamena za add-model stranicu.
Diffstat (limited to 'frontend/src/app/_data/Experiment.ts')
-rw-r--r-- | frontend/src/app/_data/Experiment.ts | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/frontend/src/app/_data/Experiment.ts b/frontend/src/app/_data/Experiment.ts new file mode 100644 index 00000000..706231c7 --- /dev/null +++ b/frontend/src/app/_data/Experiment.ts @@ -0,0 +1,12 @@ +export default class Experiment { + _id: string = ''; + constructor( + public name: string = 'Novi experiment', + public description: string = '', + public datasetId: string = '', + public inputColumns: string[] = [], + public columnToPredict: string = '', + public dateCreated: Date = new Date(), + public lastUpdated: Date = new Date() + ) { } +}
\ No newline at end of file |