Skip to content

Commit

Permalink
fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
divyegala committed Dec 15, 2023
1 parent fe14bbc commit b6534c3
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions python/raft-ann-bench/src/raft-ann-bench/plot/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,8 +296,10 @@ def mean_y(algo):
ax = df.plot.bar(rot=0, color=colors)
fig = ax.get_figure()
print(f"writing build output to {fn_out}")
plt.title("Average Build Time within Recall Range "
f"for k={k} batch_size={batch_size}")
plt.title(
"Average Build Time within Recall Range "
f"for k={k} batch_size={batch_size}"
)
plt.suptitle(f"{dataset}")
plt.ylabel("Build Time (s)")
fig.savefig(fn_out)
Expand Down Expand Up @@ -613,7 +615,7 @@ def main():
build_output_filepath,
args.dataset,
k,
batch_size
batch_size,
)


Expand Down

0 comments on commit b6534c3

Please sign in to comment.