A confusion in torch.__init__

in torch.init we can see a lot

from torch.XXX import YYY

but the correct and robust way to build a package should be

from .XXX import YYY

My question is why “In package torch innerly , builder want to import module or funcs by abs import from outside , considering seemingly useless , isnt”