fix: replace 'ianvs -f' with 'python benchmarking.py -f' in all example READMEs#579
fix: replace 'ianvs -f' with 'python benchmarking.py -f' in all example READMEs#57931groot wants to merge 1 commit into
Conversation
…le READMEs Signed-off-by: Parv Agrawal <agrawalparv13@gmail.com>
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: 31groot The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
|
/assign @jaypume |
There was a problem hiding this comment.
Code Review
This pull request updates various README.md files across the repository to replace the ianvs CLI command with python benchmarking.py for running benchmarks. The review feedback highlights a few path issues, such as an incorrect absolute path in the cloud VLA finetune guide and an extra directory prefix in the LLM edge benchmark suite guide. Additionally, several code blocks containing shell commands are incorrectly marked with python syntax highlighting and should be updated to bash or shell.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
| ``` | ||
| 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.
The path to the benchmarking job YAML file has a leading slash (/examples/...), which makes it an absolute path. Since the user just ran cd ianvs to enter the repository root, this should be a relative path (examples/...) so that the file can be correctly located relative to the current working directory.
| python benchmarking.py -f /examples/cloud_VLA_finetune/singletask_learning_bench/benchmarkingjob.yaml | |
| python benchmarking.py -f examples/cloud_VLA_finetune/singletask_learning_bench/benchmarkingjob.yaml |
|
|
||
| ```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.
The path contains an extra ianvs/ prefix (ianvs/examples/...). Since benchmarking.py is run from the root of the repository, the examples directory is directly accessible. Using ianvs/examples/... will result in a "file not found" error. Please use a relative path starting with examples/.
| python benchmarking.py -f ianvs/examples/llm-edge-benchmark-suite/single_task_bench_with_compression/benchmarkingjob.yaml | |
| python benchmarking.py -f examples/llm-edge-benchmark-suite/single_task_bench_with_compression/benchmarkingjob.yaml |
|
|
||
| ```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 |
|
|
||
| ```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 |
|
|
||
| ```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 |
What type of PR is this?
/kind documentation
What this PR does / why we need it:
24 example READMEs instructed users to run
ianvs -fwhich fails ona fresh install with
No module named ianvs. The correct command ispython benchmarking.py -f.This is a systematic fix across all affected READMEs found via:
find examples -name "README.md" | xargs grep -l "ianvs -f"Files changed: 24 READMEs, 34 occurrences replaced.
Which issue(s) this PR fixes:
Fixes #563