aboutsummaryrefslogtreecommitdiff
path: root/src/mlia/cli
diff options
context:
space:
mode:
authorDmitrii Agibov <dmitrii.agibov@arm.com>2023-02-15 09:08:14 +0000
committerDmitrii Agibov <dmitrii.agibov@arm.com>2023-02-15 12:11:59 +0000
commitaf251a19c623dc371c959c75e823ef11aeeccdf2 (patch)
tree8aa89585cc6f5455cce26498a6bbdd6b4b6df6c5 /src/mlia/cli
parent49dfd03617ed28a4fcbd847dd958c27442c84556 (diff)
downloadmlia-af251a19c623dc371c959c75e823ef11aeeccdf2.tar.gz
MLIA-813 Change default output directory
- If no output directory provided then create one in the current working directory - Update documentation and tests Change-Id: Id1f2acef14e1bd2edffbfa6139a961a5c5018211
Diffstat (limited to 'src/mlia/cli')
-rw-r--r--src/mlia/cli/options.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mlia/cli/options.py b/src/mlia/cli/options.py
index b16f77f..d40aa88 100644
--- a/src/mlia/cli/options.py
+++ b/src/mlia/cli/options.py
@@ -233,8 +233,8 @@ def add_output_directory(parser: argparse.ArgumentParser) -> None:
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 temporary "
- "directory instead.",
+ "If not specified then MLIA will use "
+ "directory 'mlia-output' in the current working directory instead.",
)