Skip to content

Commit

Permalink
Merge pull request PaddlePaddle#616 from PaddlePaddle/release/v0.9.0
Browse files Browse the repository at this point in the history
merge Release/v0.9.0 to develop
  • Loading branch information
luotao1 authored Nov 25, 2016
2 parents 238cc09 + 5c76b26 commit c46261b
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 14 deletions.
4 changes: 1 addition & 3 deletions demo/model_zoo/embedding/pre_DictAndModel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,5 @@ set -x
# download the dictionary and pretrained model
for file in baidu.dict model_32.emb model_64.emb model_128.emb model_256.emb
do
# following is the google drive address
# you can also directly download from https://pan.baidu.com/s/1o8q577s
wget https://www.googledrive.com/host/0B7Q8d52jqeI9ejh6Q1RpMTFQT1k/embedding/$file --no-check-certificate
wget http://paddlepaddle.bj.bcebos.com/model_zoo/embedding/$file
done
4 changes: 1 addition & 3 deletions demo/model_zoo/resnet/get_model.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,7 @@ echo "Downloading ResNet models..."

for file in resnet_50.tar.gz resnet_101.tar.gz resnet_152.tar.gz mean_meta_224.tar.gz
do
# following is the google drive address
# you can also directly download from https://pan.baidu.com/s/1o8q577s
wget https://www.googledrive.com/host/0B7Q8d52jqeI9ejh6Q1RpMTFQT1k/imagenet/$file --no-check-certificate
wget http://paddlepaddle.bj.bcebos.com/model_zoo/imagenet/$file
tar -xvf $file
rm $file
done
Expand Down
4 changes: 1 addition & 3 deletions demo/seqToseq/data/paraphrase_data.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@ set -e
set -x

# download the in-house paraphrase dataset
# following is the google drive address
# you can also directly download from https://pan.baidu.com/s/1o8q577s
wget https://www.googledrive.com/host/0B7Q8d52jqeI9ejh6Q1RpMTFQT1k/embedding/paraphrase.tar.gz --no-check-certificate
wget http://paddlepaddle.bj.bcebos.com/model_zoo/embedding/paraphrase.tar.gz

# untar the dataset
tar -zxvf paraphrase.tar.gz
Expand Down
4 changes: 1 addition & 3 deletions demo/seqToseq/data/wmt14_model.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@ set -e
set -x

# download the pretrained model
# following is the google drive address
# you can also directly download from https://pan.baidu.com/s/1o8q577s
wget https://www.googledrive.com/host/0B7Q8d52jqeI9ejh6Q1RpMTFQT1k/wmt14_model.tar.gz --no-check-certificate
wget http://paddlepaddle.bj.bcebos.com/model_zoo/wmt14_model.tar.gz

# untar the model
tar -zxvf wmt14_model.tar.gz
Expand Down
4 changes: 2 additions & 2 deletions doc_cn/build_and_install/install/ubuntu_install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ PaddlePaddle的ubuntu安装包分为四个版本,他们是 cpu、gpu、cpu-noa

.. code-block:: shell
gdebi paddle-*-cpu.deb
gdebi paddle-*-cpu*.deb
如果 :code:`gdebi` 没有安装,则需要使用 :code:`sudo apt-get install gdebi`, 来安装 :code:`gdebi` 。

Expand All @@ -20,7 +20,7 @@ PaddlePaddle的ubuntu安装包分为四个版本,他们是 cpu、gpu、cpu-noa

.. code-block:: shell
dpkg -i paddle-*-cpu.deb
dpkg -i paddle-*-cpu*.deb
apt-get install -f
:code:`dpkg -i` 的时候如果报一些依赖未找到的错误是正常的,
Expand Down

0 comments on commit c46261b

Please sign in to comment.