May someone explain why when I when I use sys.path.append I cannot access to my module via structure "from somefolder import module"?
import sys
sys.path.append('../models/research/object_detection/utils')
import dataset_util
cannot import name 'dataset_util'
whilst - from utils import dataset_util
works fine
Is there any decent explanation of this behavior? And what should I do with sys.path.append to have ability to use the structure "from somefolder import module"? Thanks in advance