JJGO / UniverSeg

UniverSeg: Universal Medical Image Segmentation
Apache License 2.0
481 stars 49 forks source link

Bug in visualize_tensors function #5

Closed kennyha85 closed 11 months ago

kennyha85 commented 1 year ago

What is E in visualize_tensors function?

ax.imshow(E.rearrange(x,'C H W -> H W C'))

adalca commented 1 year ago

We had a line

import einops as E

a bit lower down. We moved it higher up to avoid the confusion.

E refers to einops

JJGO commented 1 year ago

Does this resolve your issue @kennyha85

kennyha85 commented 1 year ago

Does this resolve your issue @kennyha85

Yes, the issue has been solved