diff --git a/python/raft-ann-bench/src/raft-ann-bench/plot/__main__.py b/python/raft-ann-bench/src/raft-ann-bench/plot/__main__.py index 604aea9587..86fd527f5f 100644 --- a/python/raft-ann-bench/src/raft-ann-bench/plot/__main__.py +++ b/python/raft-ann-bench/src/raft-ann-bench/plot/__main__.py @@ -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) @@ -613,7 +615,7 @@ def main(): build_output_filepath, args.dataset, k, - batch_size + batch_size, )