Skip to content

Commit fd5c1f7

Browse files
committed
increase figisze
1 parent 857ef10 commit fd5c1f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

onnx_diagnostic/helpers/log_helper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ def _to_images_bar(
285285
nn = df.shape[1] // n_cols
286286
nn += int(df.shape[1] % n_cols != 0)
287287
ratio = float(os.environ.get("FIGSIZEH", "1"))
288-
figsize = (6 * n_cols, nn * (2 + df.shape[0] / 15) * ratio)
288+
figsize = (6 * n_cols, nn * (2.5 + df.shape[0] / 15) * ratio)
289289
fig, axs = plt.subplots(nn, n_cols, figsize=figsize)
290290
pos = 0
291291
imgs = []

0 commit comments

Comments
 (0)