Skip to content

Commit 87efe8e

Browse files
author
Songki Choi
authored
Hide internal options from external GUI (#2037)
Signed-off-by: Songki Choi <[email protected]>
1 parent 28bbd58 commit 87efe8e

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

otx/algorithms/action/configs/classification/configuration.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ algo_backend:
259259
rules: []
260260
type: UI_RULES
261261
value: Incremental
262-
visible_in_ui: True
262+
visible_in_ui: false
263263
warning: null
264264
mem_cache_size:
265265
affects_outcome_of: TRAINING

otx/algorithms/action/configs/detection/configuration.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ algo_backend:
259259
rules: []
260260
type: UI_RULES
261261
value: Incremental
262-
visible_in_ui: True
262+
visible_in_ui: false
263263
warning: null
264264
mem_cache_size:
265265
affects_outcome_of: TRAINING

otx/algorithms/classification/configs/configuration.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ algo_backend:
352352
rules: []
353353
type: UI_RULES
354354
value: Incremental
355-
visible_in_ui: True
355+
visible_in_ui: false
356356
warning: null
357357
mem_cache_size:
358358
affects_outcome_of: TRAINING

otx/algorithms/common/configs/training_base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ class BaseAlgoBackendParameters(ParameterGroup):
281281
header="train type",
282282
description="Training scheme option that determines how to train the model",
283283
editable=False,
284-
visible_in_ui=True,
284+
visible_in_ui=False,
285285
)
286286

287287
mem_cache_size = configurable_integer(
@@ -299,7 +299,7 @@ class BaseAlgoBackendParameters(ParameterGroup):
299299
header="Scheme for storage cache",
300300
description="Scheme for storage cache",
301301
editable=False,
302-
visible_in_ui=True,
302+
visible_in_ui=False,
303303
)
304304

305305
@attrs

otx/algorithms/detection/configs/detection/configuration.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ algo_backend:
260260
rules: []
261261
type: UI_RULES
262262
value: Incremental
263-
visible_in_ui: True
263+
visible_in_ui: false
264264
warning: null
265265
mem_cache_size:
266266
affects_outcome_of: TRAINING

otx/algorithms/detection/configs/instance_segmentation/configuration.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ algo_backend:
260260
rules: []
261261
type: UI_RULES
262262
value: Incremental
263-
visible_in_ui: True
263+
visible_in_ui: false
264264
warning: null
265265
mem_cache_size:
266266
affects_outcome_of: TRAINING

otx/algorithms/detection/configs/rotated_detection/configuration.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ algo_backend:
260260
rules: []
261261
type: UI_RULES
262262
value: Incremental
263-
visible_in_ui: True
263+
visible_in_ui: false
264264
warning: null
265265
type: PARAMETER_GROUP
266266
visible_in_ui: true

otx/algorithms/segmentation/configs/configuration.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ algo_backend:
290290
rules: []
291291
type: UI_RULES
292292
value: Incremental
293-
visible_in_ui: True
293+
visible_in_ui: false
294294
warning: null
295295
mem_cache_size:
296296
affects_outcome_of: TRAINING

0 commit comments

Comments
 (0)