-
Notifications
You must be signed in to change notification settings - Fork 539
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
Improved CM commands #2013
base: master
Are you sure you want to change the base?
Improved CM commands #2013
Conversation
MLCommons CLA bot All contributors have signed the MLCommons CLA ✍️ ✅ |
@@ -55,7 +55,8 @@ The below CM command will launch the SUT server | |||
|
|||
``` | |||
cm run script --tags=generate-run-cmds,inference --model=bert-99 --backend=pytorch \ | |||
--mode=performance --device=cuda --quiet --test_query_count=1000 --network=sut | |||
--mode=performance --device=cuda --quiet --test_query_count=1000 --network=sut \ | |||
--outdirname=results/bert-99-performance |
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.
Whats the use of --outdirname
here?
text_to_image/README.md
Outdated
|
||
**`fp32`** | ||
``` | ||
rclone copy mlc-inference:mlcommons-inference-wg-public/stable_diffusion_fp32 ./stable_diffusion_fp32 -P | ||
rclone copy mlc-inference:mlcommons-inference-wg-public/stable_diffusion_fp32 $MODEL_PATH -P |
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.
We are already inside $MODEL_PATH after cd $MODEL_PATH
@@ -317,7 +317,7 @@ def showAnns(self, anns): | |||
v = kp[2::3] | |||
for sk in sks: | |||
if np.all(v[sk] > 0): | |||
plt.plot(x[sk], y[sk], linewidth=3, color=c) | |||
plt.plot(x[sk], y[sk], linewidth=3, color=c,label=f"keypoint {sk}") |
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.
what's the change done here?
No description provided.