-
Notifications
You must be signed in to change notification settings - Fork 540
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
Improved CM commands #2013
Conversation
MLCommons CLA bot All contributors have signed the MLCommons CLA ✍️ ✅ |
language/bert/README.md
Outdated
@@ -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
tools/upscale_coco/coco.py
Outdated
@@ -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?
@@ -317,7 +317,17 @@ def showAnns(self, anns): | |||
v = kp[2::3] | |||
for sk in sks: | |||
if np.all(v[sk] > 0): | |||
|
|||
|
|||
<< << << < HEAD |
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.
Came while resolving merge conflict?
@@ -318,6 +318,15 @@ def showAnns(self, anns): | |||
for sk in sks: | |||
if np.all(v[sk] > 0): | |||
plt.plot(x[sk], y[sk], linewidth=3, color=c) | |||
|
|||
|
|||
== == == = |
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.
Here?
color=c) | ||
|
||
|
||
>>>>>> > 6bc50d8f7c0ee1c553aabe2d40c9534e7529b620 |
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.
Here?
@@ -318,6 +318,14 @@ def showAnns(self, anns): | |||
for sk in sks: | |||
if np.all(v[sk] > 0): | |||
plt.plot(x[sk], y[sk], linewidth=3, color=c) | |||
plt.plot( |
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.
Hi @sahilavaran , is there a particular reason we need to duplicate line 320 and 321?
There are some issues here, i am creating a new one. |
No description provided.