diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-02-02 16:54:46 +0100 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-02-02 16:54:46 +0100 |
commit | 87841177a29211c70130b177e4c6f42a3b9cd5ca (patch) | |
tree | 1a38ab16465824bec94ca415b6403e3e620b24b2 | |
parent | a6fec195d306c19d672fd112b5bef188bec5a1aa (diff) |
... add cli.py with --load-json definition
-rw-r--r-- | lib/cli.py | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -450,6 +450,12 @@ def add_standard_arguments(parser): help="Export model in JSON format to FILENAME", ) parser.add_argument( + "--load-json", + metavar="FILENAME", + type=str, + help="Load model in JSON format from FILENAME", + ) + parser.add_argument( "--dref-precision", metavar="NDIG", type=int, |