Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
fix ndarray namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-haibin-lin committed Jul 22, 2017
1 parent ed95141 commit 09e42c9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion python/mxnet/image/detection.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

from ..base import numeric_types
from .. import ndarray as nd
from .._ndarray_internal import _cvcopyMakeBorder as copyMakeBorder
from ..ndarray._internal import _cvcopyMakeBorder as copyMakeBorder
from .. import io
from .image import RandomOrderAug, ColorJitterAug, LightingAug, ColorNormalizeAug
from .image import ResizeAug, ForceResizeAug, CastAug, HueJitterAug, RandomGrayAug
Expand Down
6 changes: 3 additions & 3 deletions python/mxnet/image/image.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@

from ..base import numeric_types
from .. import ndarray as nd
from .ndarray import _internal
from .ndarray._internal import _cvimresize as imresize
from .ndarray._internal import _cvcopyMakeBorder as copyMakeBorder
from ..ndarray import _internal
from ..ndarray._internal import _cvimresize as imresize
from ..ndarray._internal import _cvcopyMakeBorder as copyMakeBorder
from .. import io
from .. import recordio

Expand Down

0 comments on commit 09e42c9

Please sign in to comment.