We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e6122d6 + aa0952d commit 55cf4deCopy full SHA for 55cf4de
src_py/nerlPlanner/WinWorkerDialog.py
@@ -202,7 +202,7 @@ def ui_update_all_values(WorkerWindow):
202
if DistributedSystemType == "none":
203
DistributedSystemToken = "none"
204
# Update here when adding new fields to the worker
205
- worker_parameters_conditions = bool(LayersSizesList) and bool(ModelTypeStr) and (ModelType >= 0) and\
+ worker_parameters_conditions = bool(LayersSizesList) and bool(ModelTypeStr) and (int(ModelType) >= 0) and\
206
bool(OptimizationType) and bool(LossMethodStr) and bool(LossMethod) and\
207
bool(LearningRate) and bool(LayersFunctionsList) and bool(LayersSizesList) and bool(Epochs) and bool(InfraType) and\
208
bool(DistributedSystemType) and bool(DistributedSystemToken)
0 commit comments