Skip to content

Commit

Permalink
fixup! web-client/Trainer: reset logs
Browse files Browse the repository at this point in the history
  • Loading branch information
tharvik committed Apr 29, 2024
1 parent e6cc4d4 commit 0924ce5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web-client/src/components/training/Trainer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ async function startTraining(distributed: boolean): Promise<void> {
try {
training.value = disco.fit(dataset);
logs.value = List()
logs.value = List<RoundLogs & { participants: number }>();
for await (const roundLogs of training.value)
logs.value = logs.value.push(roundLogs);
Expand Down

0 comments on commit 0924ce5

Please sign in to comment.