Skip to content
Snippets Groups Projects
Commit d4a7604f authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[bob] Remove namespace declaration within package

parent dbc3c12d
No related branches found
No related tags found
1 merge request!12Streamlining
# see https://docs.python.org/3/library/pkgutil.html
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)
\ No newline at end of file
# see https://docs.python.org/3/library/pkgutil.html
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)
\ No newline at end of file
...@@ -7,7 +7,7 @@ from bob.ip.binseg.data.imagefolder import ImageFolder ...@@ -7,7 +7,7 @@ from bob.ip.binseg.data.imagefolder import ImageFolder
#### Config #### #### Config ####
# add your transforms below # add your transforms below
transforms = Compose([ transforms = Compose([
CenterCrop((544,544)) CenterCrop((544,544))
,RandomHFlip() ,RandomHFlip()
,RandomVFlip() ,RandomVFlip()
......
# see https://docs.python.org/3/library/pkgutil.html
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)
\ No newline at end of file
# see https://docs.python.org/3/library/pkgutil.html from .binsegdataset import BinSegDataset
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)
from .binsegdataset import BinSegDataset
\ No newline at end of file
# see https://docs.python.org/3/library/pkgutil.html
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)
\ No newline at end of file
# see https://docs.python.org/3/library/pkgutil.html
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)
\ No newline at end of file
# see https://docs.python.org/3/library/pkgutil.html
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)
\ No newline at end of file
# see https://docs.python.org/3/library/pkgutil.html
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)
\ No newline at end of file
# see https://docs.python.org/3/library/pkgutil.html
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)
\ No newline at end of file
# see https://docs.python.org/3/library/pkgutil.html
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment