rename mb_ro_on_layoutreorder

This commit is contained in:
Robert Sachunsky 2026-07-19 23:47:03 +02:00
parent a8ec42eed3
commit 91f87fa784
2 changed files with 1 additions and 1 deletions

View file

@ -33,7 +33,7 @@ def readingorder_cli(ctx, input, dir_in, out, overwrite):
""" """
Generate ReadingOrder from ML model Generate ReadingOrder from ML model
""" """
from ..mb_ro_on_layout import Reorder from ..reorder import Reorder
assert bool(input) != bool(dir_in), "Either -i (single input) or -di (directory) must be provided, but not both." assert bool(input) != bool(dir_in), "Either -i (single input) or -di (directory) must be provided, but not both."
orderer = Reorder(model_zoo=ctx.obj.model_zoo, orderer = Reorder(model_zoo=ctx.obj.model_zoo,
device=ctx.obj.device) device=ctx.obj.device)