Skip to content

Commit

Permalink
TMP simplify pages layout
Browse files Browse the repository at this point in the history
  • Loading branch information
tharvik committed Dec 19, 2024
1 parent 7f28bf7 commit 59c96ac
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions webapp/src/components/training/TrainingSteps.vue
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
<template>
<div v-if="task !== undefined">
<div v-if="task !== undefined" class="flex flex-col space-y-4 md:space-y-8">
<Description v-show="trainingStore.step === 1" :task="task" />

<div
<LabeledDatasetInput
v-show="trainingStore.step === 2"
class="flex flex-col space-y-4 md:space-y-8"
:task
v-model="dataset"
>
<LabeledDatasetInput :task v-model="dataset">
<template #header>
<DataDescription :task />
</template>
</LabeledDatasetInput>
</div>
<template #header>
<DataDescription :task />
</template>
</LabeledDatasetInput>

<Trainer
v-show="trainingStore.step === 3"
Expand All @@ -21,8 +20,9 @@
/>

<Finished v-show="trainingStore.step === 4" :task :model="trainedModel" />

<TrainingButtons />
</div>
<TrainingButtons />
</template>

<script lang="ts" setup>
Expand Down

0 comments on commit 59c96ac

Please sign in to comment.