From 269253a1b6da216571894bed7c8e7ba48a3381b6 Mon Sep 17 00:00:00 2001 From: Sheng Zha Date: Mon, 29 Jun 2020 12:16:16 -0700 Subject: [PATCH 1/2] Remove mention of nightly in pypi (#18635) --- tools/pip/doc/CPU_ADDITIONAL.md | 7 ------- tools/pip/doc/CU100_ADDITIONAL.md | 7 ------- tools/pip/doc/CU101_ADDITIONAL.md | 7 ------- tools/pip/doc/CU102_ADDITIONAL.md | 7 ------- tools/pip/doc/CU92_ADDITIONAL.md | 7 ------- tools/pip/doc/NATIVE_ADDITIONAL.md | 7 ------- 6 files changed, 42 deletions(-) diff --git a/tools/pip/doc/CPU_ADDITIONAL.md b/tools/pip/doc/CPU_ADDITIONAL.md index 07a95d5e451b..ef958889fc70 100644 --- a/tools/pip/doc/CPU_ADDITIONAL.md +++ b/tools/pip/doc/CPU_ADDITIONAL.md @@ -35,10 +35,3 @@ To install, use: ```bash pip install mxnet ``` - -Nightly Builds --------------- -To install the latest nightly build, use: -```bash -pip install --pre mxnet -f https://dist.mxnet.io/python -``` diff --git a/tools/pip/doc/CU100_ADDITIONAL.md b/tools/pip/doc/CU100_ADDITIONAL.md index 2e607d766ed8..36455eaef3de 100644 --- a/tools/pip/doc/CU100_ADDITIONAL.md +++ b/tools/pip/doc/CU100_ADDITIONAL.md @@ -35,10 +35,3 @@ To install: ```bash pip install mxnet-cu100 ``` - -Nightly Builds --------------- -To install the latest nightly build, use: -```bash -pip install --pre mxnet-cu100 -f https://dist.mxnet.io/python -``` diff --git a/tools/pip/doc/CU101_ADDITIONAL.md b/tools/pip/doc/CU101_ADDITIONAL.md index 278c39942141..36ea4d3b5be8 100644 --- a/tools/pip/doc/CU101_ADDITIONAL.md +++ b/tools/pip/doc/CU101_ADDITIONAL.md @@ -35,10 +35,3 @@ To install: ```bash pip install mxnet-cu101 ``` - -Nightly Builds --------------- -To install the latest nightly build, use: -```bash -pip install --pre mxnet-cu101 -f https://dist.mxnet.io/python -``` diff --git a/tools/pip/doc/CU102_ADDITIONAL.md b/tools/pip/doc/CU102_ADDITIONAL.md index 81829690da29..ffb034a15f01 100644 --- a/tools/pip/doc/CU102_ADDITIONAL.md +++ b/tools/pip/doc/CU102_ADDITIONAL.md @@ -34,10 +34,3 @@ To install: ```bash pip install mxnet-cu102 ``` - -Nightly Builds --------------- -To install the latest nightly build, use: -```bash -pip install --pre mxnet-cu102 -f https://dist.mxnet.io/python -``` diff --git a/tools/pip/doc/CU92_ADDITIONAL.md b/tools/pip/doc/CU92_ADDITIONAL.md index 7aec9a1aeb67..15c221123fba 100644 --- a/tools/pip/doc/CU92_ADDITIONAL.md +++ b/tools/pip/doc/CU92_ADDITIONAL.md @@ -34,10 +34,3 @@ To install: ```bash pip install mxnet-cu92 ``` - -Nightly Builds --------------- -To install the latest nightly build, use: -```bash -pip install --pre mxnet-cu92 -f https://dist.mxnet.io/python -``` diff --git a/tools/pip/doc/NATIVE_ADDITIONAL.md b/tools/pip/doc/NATIVE_ADDITIONAL.md index 902464c7ab6e..a2e48b0692b7 100644 --- a/tools/pip/doc/NATIVE_ADDITIONAL.md +++ b/tools/pip/doc/NATIVE_ADDITIONAL.md @@ -32,10 +32,3 @@ To install: ```bash pip install mxnet-native ``` - -Nightly Builds --------------- -To install the latest nightly build, use: -```bash -pip install --pre mxnet-native -f https://dist.mxnet.io/python -``` From 538fd91ba3ee59183bb99a3450b21a2b1f1cc9e2 Mon Sep 17 00:00:00 2001 From: gigasquid Date: Sat, 15 Aug 2020 15:37:08 -0400 Subject: [PATCH 2/2] update bert dev.tsv link --- contrib/clojure-package/examples/bert/get_bert_data.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/clojure-package/examples/bert/get_bert_data.sh b/contrib/clojure-package/examples/bert/get_bert_data.sh index 10ed8e9a1f8e..e640857d1193 100755 --- a/contrib/clojure-package/examples/bert/get_bert_data.sh +++ b/contrib/clojure-package/examples/bert/get_bert_data.sh @@ -28,5 +28,5 @@ if [ ! -d "$data_path" ]; then curl https://s3.us-east-2.amazonaws.com/mxnet-scala/scala-example-ci/BertQA/static_bert_qa-symbol.json -o $data_path/static_bert_qa-symbol.json curl https://s3.us-east-2.amazonaws.com/mxnet-scala/scala-example-ci/BertQA/static_bert_base_net-symbol.json -o $data_path/static_bert_base_net-symbol.json curl https://s3.us-east-2.amazonaws.com/mxnet-scala/scala-example-ci/BertQA/static_bert_base_net-0000.params -o $data_path/static_bert_base_net-0000.params - curl https://raw.githubusercontent.com/dmlc/gluon-nlp/master/docs/examples/sentence_embedding/dev.tsv -o $data_path/dev.tsv + curl https://raw.githubusercontent.com/dmlc/gluon-nlp/d75185ec7eb1eb082ee92992be8677666aaf7ec7/docs/examples/sentence_embedding/dev.tsv -o $data_path/dev.tsv fi