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

Commit

Permalink
move estimator to contrib (#14633)
Browse files Browse the repository at this point in the history
  • Loading branch information
roywei authored and szha committed May 20, 2019
1 parent d4f7744 commit ce21814
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 4 deletions.
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 ce21814

Please sign in to comment.