gigasquid commented on a change in pull request #14769: [WIP] [Clojure] Add Fine Tuning Sentence Pair Classification BERT Example URL: https://github.com/apache/incubator-mxnet/pull/14769#discussion_r277466853
########## File path: contrib/clojure-package/examples/bert/get_bert_data.sh ########## @@ -19,11 +19,14 @@ set -e -data_path=model +data_path=data if [ ! -d "$data_path" ]; then mkdir -p "$data_path" curl https://s3.us-east-2.amazonaws.com/mxnet-scala/scala-example-ci/BertQA/vocab.json -o $data_path/vocab.json curl https://s3.us-east-2.amazonaws.com/mxnet-scala/scala-example-ci/BertQA/static_bert_qa-0002.params -o $data_path/static_bert_qa-0002.params 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://media.githubusercontent.com/media/gigasquid/mxnet-data/master/static_bert_base_net-symbol.json -o $data_path/static_bert_base_net-symbol.json + curl https://media.githubusercontent.com/media/gigasquid/mxnet-data/master/static_bert_base_net-0000.params -o $data_path/static_bert_base_net-0000.params Review comment: @lanking520 Would it be possible to host the BERT Base params on on the same bucket as the other `static-bert-qa` params too rather than my github? ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
