Skip to content

Commit

Permalink
Update CHANGELOG.md
Browse files Browse the repository at this point in the history
Signed-off-by: Kim, Vinnam <[email protected]>
  • Loading branch information
vinnamkim committed May 31, 2023
1 parent 0b841ee commit 4be1f3c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ All notable changes to this project will be documented in this file.

### New features

- Support encrypted dataset training (<https://github.com/openvinotoolkit/training_extensions/pull/2209>)

### Enhancements

### Bug fixes
Expand Down
7 changes: 6 additions & 1 deletion otx/cli/tools/train.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,12 @@ def get_args():
default=None,
help="The data.yaml path want to use in train task.",
)
parser.add_argument("--encryption-key", type=str, default=None, help="Encryption key for a")
parser.add_argument(
"--encryption-key",
type=str,
default=None,
help="Encryption key required to train the encrypted dataset. It is not required the non-encrypted dataset",
)

sub_parser = add_hyper_parameters_sub_parser(parser, hyper_parameters, return_sub_parser=True)
# TODO: Temporary solution for cases where there is no template input
Expand Down

0 comments on commit 4be1f3c

Please sign in to comment.