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

[Fit API] improve event handlers #14685

Merged
merged 10 commits into from
Apr 19, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 3 additions & 15 deletions ci/docker/runtime_functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1296,31 +1296,19 @@ nightly_scala_demo_test_cpu() {
bash bin/run_im.sh
}

nightly_estimator_cnn_gpu() {
nightly_estimator_gpu() {
set -ex
cd /work/mxnet/tests/nightly/estimator
export PYTHONPATH=/work/mxnet/python/
python test_estimator_cnn.py --type gpu
}

nightly_estimator_cnn_cpu() {
set -ex
cd /work/mxnet/tests/nightly/estimator
export PYTHONPATH=/work/mxnet/python/
python test_estimator_cnn.py --type cpu
}

nightly_estimator_rnn_gpu() {
set -ex
cd /work/mxnet/tests/nightly/estimator
export PYTHONPATH=/work/mxnet/python/
python test_sentiment_rnn.py --type gpu
}

nightly_estimator_rnn_cpu() {
nightly_estimator_cpu() {
set -ex
cd /work/mxnet/tests/nightly/estimator
export PYTHONPATH=/work/mxnet/python/
python test_estimator_cnn.py --type cpu
python test_sentiment_rnn.py --type cpu
}

Expand Down
271 changes: 118 additions & 153 deletions python/mxnet/gluon/contrib/estimator/estimator.py

Large diffs are not rendered by default.

Loading