Skip to content

Commit

Permalink
Do not automatically run training on initial superpixel generation
Browse files Browse the repository at this point in the history
  • Loading branch information
bnmajor committed Mar 25, 2024
1 parent 365e0e9 commit 454c639
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -635,7 +635,8 @@ const ActiveLearningView = View.extend({
url: `slicer_cli_web/${this.activeLearningJobUrl}/rerun`,
data: {
jobId: this.lastRunJobId,
randominput: false
randominput: false,
train: true
}
}).done((job) => {
this.waitForJobCompletion(job._id, goToNextStep);
Expand Down Expand Up @@ -672,7 +673,8 @@ const ActiveLearningView = View.extend({
modeldir: modelsFolderId,
girderApiUrl: '',
girderToken: '',
certainty: certaintyMetric
certainty: certaintyMetric,
train: false
};
this.activeLearningStep = activeLearningSteps.InitialLabeling;
this.getAnnotations();
Expand Down

0 comments on commit 454c639

Please sign in to comment.