Skip to content
Snippets Groups Projects
Commit eafb4646 authored by Levecque Etienne's avatar Levecque Etienne
Browse files

fix: correct import round bug

parent 90dd36a0
No related branches found
No related tags found
No related merge requests found
......@@ -152,7 +152,7 @@ class Image:
if pipeline is None:
pipeline = self.pipeline
block_values = np.stack([block.value.reshape(-1, 8, 8) for block in blocks])
starts = round(pipeline.backward(block_values))
starts = utils.round(pipeline.backward(block_values))
transformed_starts = pipeline.forward(starts)
completed = 0
for i in range(len(starts)):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment