Skip to content

Commit e8484c2

Browse files
committed
Correct typo
1 parent e09855a commit e8484c2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

settings.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ def init_default_settings(self):
3030
self.settings['CUDA_version'] = [10.2, 11.8]
3131

3232
# BiaPy
33-
self.settings['biapy_code_version'] = "v3.3.10"
33+
self.settings['biapy_code_version'] = "v3.3.12"
3434
self.settings['biapy_code_github'] = "https://github.com/BiaPyX/BiaPy"
35-
self.settings['biapy_gui_version'] = "v1.0.4"
35+
self.settings['biapy_gui_version'] = "v1.0.5"
3636
self.settings['biapy_gui_github'] = "https://github.com/BiaPyX/BiaPy-GUI"
37-
self.settings['biapy_gui_last_version_hash'] = "69a6e455261ebb15f87035984470265c1c301ab7"
37+
self.settings['biapy_gui_last_version_hash'] = "e09855a723f1bf493590b17fe454f7db424ded14"
3838
self.settings['biapy_container_basename'] = "biapyx/biapy"
3939
self.settings['biapy_container_name'] = self.settings['biapy_container_basename']+":latest-"+str(self.settings['CUDA_version'][-1])
4040
self.settings['biapy_container_sizes'] = ["7.68GB", "11.6GB"]

ui_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1000,7 +1000,7 @@ def create_yaml_file(main_window):
10001000
biapy_config['MODEL']['LAST_ACTIVATION'] = get_text(main_window.ui.MODEL__LAST_ACTIVATION__INPUT)
10011001
if int(get_text(main_window.ui.MODEL__N_CLASSES__INPUT)) != 2:
10021002
classes = int(get_text(main_window.ui.MODEL__N_CLASSES__INPUT))
1003-
if classses == 1:
1003+
if classes == 1:
10041004
classes = 2
10051005
biapy_config['MODEL']['N_CLASSES'] = classes
10061006
if get_text(main_window.ui.PROBLEM__NDIM__INPUT) == "3D":

0 commit comments

Comments
 (0)