-
-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a New Executable Module
leads_vec_dp
(#344)
* Optimized dependency profiles. (#340) * Added `leads_vec_dp`. (#340) * Docs. (#340) * Improved workflow. (#340) * Updated pyproject.toml. (#340) * Code reformatted. (#340) * Code reformatted. (#340) * Added dependency `pyyaml`. (#340) * Docs. (#340) * Supported inferences. (#340) * Added an output for `InferredDataset.complete()`. (#340) * Code reformatted. (#340) * Added `latency_invalid()`. (#340) * Bug fixed: new latency is negative. (#340) * Code reformatted. (#340) * Code reformatted. (#340) * Bug fixed: avoided `nan`s. (#340) * Bug fixed: avoided `nan`s. (#340) * Supported visual data analysis. (#340) * Added commands. (#340) * Code reformatted. (#340) * Docs. (#340) * Added command `save-as`. (#340) * Updated LEADS.pptx. (#316) (#340) --------- Signed-off-by: Terry Fu <[email protected]>
- Loading branch information
Showing
17 changed files
with
242 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
from argparse import ArgumentParser as _ArgumentParser | ||
from sys import exit as _exit | ||
|
||
from leads_vec_dp.run import run | ||
|
||
|
||
def __entry__() -> None: | ||
parser = _ArgumentParser(prog="LEADS VeC DP", | ||
description="Lightweight Embedded Assisted Driving System VeC Data Processor", | ||
epilog="GitHub: https://github.com/ProjectNeura/LEADS") | ||
parser.add_argument("workflow", help="specify a workflow file") | ||
args = parser.parse_args() | ||
_exit(run(args.workflow)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
from importlib.util import find_spec as _find_spec | ||
|
||
if not _find_spec("yaml"): | ||
raise ImportError("Please install `pyyaml` to run this module\n>>>pip install pyyaml") | ||
|
||
from leads_vec_dp.__entry__ import __entry__ | ||
from leads_vec_dp.run import * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
from leads_vec_dp.__entry__ import __entry__ | ||
|
||
if __name__ == "__main__": | ||
__entry__() |
Oops, something went wrong.