diff --git a/src/napari_easy_augment_batch_dl/frameworks/random_forest_framework.py b/src/napari_easy_augment_batch_dl/frameworks/random_forest_framework.py index bb5c55e..c4cc0ee 100644 --- a/src/napari_easy_augment_batch_dl/frameworks/random_forest_framework.py +++ b/src/napari_easy_augment_batch_dl/frameworks/random_forest_framework.py @@ -61,12 +61,12 @@ def create_callback(self, updater): def train(self, updater=None): - updater('time to train the random forest') + updater('Training random forest') updater('image size is {}'.format(self.images.shape)) updater('feature size is {}'.format(self.features.shape)) - updater('calculate features') + updater('calculating features') label_vector, features_vector = extract_features_sequence(self.images, self.labels, self.features)