-
Notifications
You must be signed in to change notification settings - Fork 156
fix: replace 'ianvs -f' with 'python benchmarking.py -f' in all example READMEs #579
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -47,7 +47,7 @@ Next, download pretrained model via [[google]](https://drive.google.com/file/d/1 | |
| We are now ready to run the ianvs for benchmarking pedestrian tracking on the MOT17 dataset. | ||
|
|
||
| ```python | ||
| ianvs -f ./examples/MOT17/multiedge_inference_bench/pedestrian_tracking/tracking_job.yaml | ||
| python benchmarking.py -f ./examples/MOT17/multiedge_inference_bench/pedestrian_tracking/tracking_job.yaml | ||
| ``` | ||
|
|
||
| The benchmarking process takes a few minutes and varies depending on devices. | ||
|
|
@@ -78,7 +78,7 @@ Next, download pretrained model via [[google]](https://drive.google.com/drive/fo | |
| We are now ready to run the ianvs for benchmarking pedestrian re-identification on the MOT17 dataset. | ||
|
|
||
| ```python | ||
| ianvs -f ./examples/MOT17/multiedge_inference_bench/pedestrian_tracking/reid_job.yaml | ||
| python benchmarking.py -f ./examples/MOT17/multiedge_inference_bench/pedestrian_tracking/reid_job.yaml | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| ``` | ||
|
|
||
| The benchmarking process takes a few minutes and varies depending on devices. | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -310,7 +310,7 @@ Run the following command: | |||||
|
|
||||||
| ``` | ||||||
| cd ianvs | ||||||
| ianvs -f /examples/cloud_VLA_finetune/singletask_learning_bench/benchmarkingjob.yaml | ||||||
| python benchmarking.py -f /examples/cloud_VLA_finetune/singletask_learning_bench/benchmarkingjob.yaml | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The path to the benchmarking job YAML file has a leading slash (
Suggested change
|
||||||
| ``` | ||||||
|
|
||||||
| After the process finished, you will see output like this: | ||||||
|
|
||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -44,7 +44,7 @@ Next, download pretrained model via [[huggingface]](https://huggingface.co/optim | |
| We are now ready to run the ianvs for benchmarking image classification for high mobility scenarios on the ImageNet dataset. | ||
|
|
||
| ```python | ||
| ianvs -f ./examples/imagenet/multiedge_inference_bench/classification_job_manual.yaml | ||
| python benchmarking.py -f ./examples/imagenet/multiedge_inference_bench/classification_job_manual.yaml | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| ``` | ||
|
|
||
| The benchmarking process takes a few minutes and varies depending on devices. | ||
|
|
@@ -75,7 +75,7 @@ Then you will find a profiler_results.yml file in the <Ianvs_HOME>/examples/imag | |
|
|
||
| Then you can run the following command to perform benchmarking: | ||
| ```shell | ||
| ianvs -f ./examples/imagenet/multiedge_inference_bench/classification_job_auto.yaml | ||
| python benchmarking.py -f ./examples/imagenet/multiedge_inference_bench/classification_job_auto.yaml | ||
| ``` | ||
|
|
||
| After running, you will see the profit from the automatic method compared with the manual method. | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -50,7 +50,7 @@ dataset: | |||||
| Once all paths are absolute and the script is updated, execute the benchmark: | ||||||
|
|
||||||
| ```bash | ||||||
| ianvs -f ianvs/examples/llm-edge-benchmark-suite/single_task_bench_with_compression/benchmarkingjob.yaml | ||||||
| python benchmarking.py -f ianvs/examples/llm-edge-benchmark-suite/single_task_bench_with_compression/benchmarkingjob.yaml | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The path contains an extra
Suggested change
|
||||||
| ``` | ||||||
|
|
||||||
| ### Expected Output | ||||||
|
|
||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The code block on line 49 is marked with
pythonsyntax highlighting, but the command inside is a shell/bash command. Please consider changing the language specifier on line 49 tobashorshellfor correct syntax highlighting.