Skip to content

Commit

Permalink
Change sync_with_model to sync_with_framework
Browse files Browse the repository at this point in the history
  • Loading branch information
bnorthan committed Feb 4, 2025
1 parent b36c88e commit 843d9c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/napari_easy_augment_batch_dl/easy_augment_batch_dl.py
Original file line number Diff line number Diff line change
Expand Up @@ -603,12 +603,12 @@ def perform_training(self):

else:
self.deep_learning_project.perform_training(self.network_architecture_drop_down.currentText(), self.update)
widget.sync_with_model()
widget.sync_with_framework()

def training_finished(self):
self.enable_gui()
widget = self.deep_learning_widgets[self.network_architecture_drop_down.currentText()]
widget.sync_with_model()
widget.sync_with_framework()

def predict_current_image(self):
self.textBrowser_log.append("Predicting current image...")
Expand Down

0 comments on commit 843d9c6

Please sign in to comment.