aboutsummaryrefslogtreecommitdiff
path: root/src/mlia/cli/options.py
diff options
context:
space:
mode:
authorDmitrii Agibov <dmitrii.agibov@arm.com>2023-02-20 15:42:33 +0000
committerDmitrii Agibov <dmitrii.agibov@arm.com>2023-02-21 15:52:39 +0000
commit803a91c0723533f62148528a81f9d0411b57438e (patch)
tree953b9bd41aa86edf030e009758280d46b8556fe6 /src/mlia/cli/options.py
parenta01e0e1229e30f9e2ebf3cd921ffe0dbef1cbea9 (diff)
downloadmlia-803a91c0723533f62148528a81f9d0411b57438e.tar.gz
MLIA-813 Change default output directory0.6.0-rc.30.6.0
- Use directory mlia-output as output directory for MLIA - If parameter --output-dir provided then place directory mlia-output under specified path or otherwise create it in the current working directory Change-Id: I298088c4aa8dbe9f35dee69ecb9ff6e9ea3cac0a
Diffstat (limited to 'src/mlia/cli/options.py')
-rw-r--r--src/mlia/cli/options.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/mlia/cli/options.py b/src/mlia/cli/options.py
index d40aa88..fe177eb 100644
--- a/src/mlia/cli/options.py
+++ b/src/mlia/cli/options.py
@@ -231,10 +231,11 @@ def add_output_directory(parser: argparse.ArgumentParser) -> None:
parser.add_argument(
"--output-dir",
type=Path,
- help="Path to the directory where MLIA "
- "stores artifacts, e.g. logs, target profiles and model files. "
- "If not specified then MLIA will use "
- "directory 'mlia-output' in the current working directory instead.",
+ help="Path to the directory where MLIA will create "
+ "output directory 'mlia-output' "
+ "for storing artifacts, e.g. logs, target profiles and model files. "
+ "If not specified then 'mlia-output' directory will be created "
+ "in the current working directory.",
)