Skip to content

Commit

Permalink
move estimator to contrib (apache#14633)
Browse files Browse the repository at this point in the history
  • Loading branch information
roywei authored and haohuw committed Jun 23, 2019
1 parent d577154 commit c4bda2d
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 4 deletions.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/nightly/estimator/test_estimator_cnn.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import mxnet as mx
from mxnet import gluon, init, nd
from mxnet.gluon import data
from mxnet.gluon.estimator import estimator
from mxnet.contrib.estimator import estimator
from mxnet.gluon.model_zoo import vision

def load_data_mnist(batch_size, resize=None, num_workers=4):
Expand Down
2 changes: 1 addition & 1 deletion tests/nightly/estimator/test_sentiment_rnn.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
from mxnet import nd, gluon
from mxnet.contrib import text
from mxnet.gluon import nn, rnn
from mxnet.gluon.estimator import estimator
from mxnet.contrib.estimator import estimator


class TextCNN(nn.Block):
Expand Down
2 changes: 1 addition & 1 deletion tests/python/unittest/test_gluon_estimator.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import mxnet as mx
from mxnet import gluon
from mxnet.gluon import nn
from mxnet.gluon.estimator import Estimator, EventHandler
from mxnet.contrib.estimator import Estimator, EventHandler
from nose.tools import assert_raises


Expand Down
2 changes: 1 addition & 1 deletion tests/python/unittest/test_gluon_event_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import mxnet as mx
from mxnet import nd
from mxnet.gluon import nn, loss
from mxnet.gluon.estimator import estimator, event_handler
from mxnet.contrib.estimator import estimator, event_handler

def _get_test_network():
net = nn.Sequential()
Expand Down

0 comments on commit c4bda2d

Please sign in to comment.