Skip to content

Commit

Permalink
Hide internal options from external GUI (#2037)
Browse files Browse the repository at this point in the history
Signed-off-by: Songki Choi <songki.choi@intel.com>
  • Loading branch information
goodsong81 authored Apr 20, 2023
1 parent 28bbd58 commit 87efe8e
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ algo_backend:
rules: []
type: UI_RULES
value: Incremental
visible_in_ui: True
visible_in_ui: false
warning: null
mem_cache_size:
affects_outcome_of: TRAINING
Expand Down
2 changes: 1 addition & 1 deletion otx/algorithms/action/configs/detection/configuration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ algo_backend:
rules: []
type: UI_RULES
value: Incremental
visible_in_ui: True
visible_in_ui: false
warning: null
mem_cache_size:
affects_outcome_of: TRAINING
Expand Down
2 changes: 1 addition & 1 deletion otx/algorithms/classification/configs/configuration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ algo_backend:
rules: []
type: UI_RULES
value: Incremental
visible_in_ui: True
visible_in_ui: false
warning: null
mem_cache_size:
affects_outcome_of: TRAINING
Expand Down
4 changes: 2 additions & 2 deletions otx/algorithms/common/configs/training_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ class BaseAlgoBackendParameters(ParameterGroup):
header="train type",
description="Training scheme option that determines how to train the model",
editable=False,
visible_in_ui=True,
visible_in_ui=False,
)

mem_cache_size = configurable_integer(
Expand All @@ -299,7 +299,7 @@ class BaseAlgoBackendParameters(ParameterGroup):
header="Scheme for storage cache",
description="Scheme for storage cache",
editable=False,
visible_in_ui=True,
visible_in_ui=False,
)

@attrs
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ algo_backend:
rules: []
type: UI_RULES
value: Incremental
visible_in_ui: True
visible_in_ui: false
warning: null
mem_cache_size:
affects_outcome_of: TRAINING
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ algo_backend:
rules: []
type: UI_RULES
value: Incremental
visible_in_ui: True
visible_in_ui: false
warning: null
mem_cache_size:
affects_outcome_of: TRAINING
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ algo_backend:
rules: []
type: UI_RULES
value: Incremental
visible_in_ui: True
visible_in_ui: false
warning: null
type: PARAMETER_GROUP
visible_in_ui: true
Expand Down
2 changes: 1 addition & 1 deletion otx/algorithms/segmentation/configs/configuration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ algo_backend:
rules: []
type: UI_RULES
value: Incremental
visible_in_ui: True
visible_in_ui: false
warning: null
mem_cache_size:
affects_outcome_of: TRAINING
Expand Down

0 comments on commit 87efe8e

Please sign in to comment.