Skip to content

Commit

Permalink
Merge pull request PaddlePaddle#592 from PaddlePaddle/develop_doc
Browse files Browse the repository at this point in the history
Develop doc
  • Loading branch information
jetfuel authored Aug 15, 2018
2 parents 85569fd + c760526 commit d17f2d2
Show file tree
Hide file tree
Showing 8 changed files with 36 additions and 13 deletions.
7 changes: 1 addition & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,7 @@ before_install:
script:
- PATH=/tmp/go/bin:$PATH .travis/precommit.sh
- |
if [[ "$TRAVIS_PULL_REQUEST" != "false" ]]; then exit 0; fi;
if [[ "$TRAVIS_BRANCH" != "develop" && ! "$TRAVIS_BRANCH" =~ ^v[[:digit:]]+\.[[:digit:]]+(\.[[:digit:]]+)?(-\S*)?$ ]]; then echo "not develop branch, no deploy"; exit 0; fi;
export DEPLOY_DOCS_SH=https://raw.githubusercontent.com/PaddlePaddle/PaddlePaddle.org/master/scripts/deploy/deploy_docs.sh
export BOOK_DIR=`pwd`
cd ..
curl $DEPLOY_DOCS_SH | bash -s $CONTENT_DEC_PASSWD $TRAVIS_BRANCH $BOOK_DIR
.travis/deploy_docs.sh
notifications:
email:
on_success: change
Expand Down
29 changes: 29 additions & 0 deletions .travis/deploy_docs.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
exit_code=0

if [[ "$TRAVIS_PULL_REQUEST" != "false" ]]; then exit $exit_code; fi;

# Deploy to the the content server if its a "develop" or "release/version" branch
# The "develop_doc" branch is reserved to test full deploy process without impacting the real content.
if [ "$TRAVIS_BRANCH" == "develop_doc" ]; then
PPO_SCRIPT_BRANCH=develop
elif [[ "$TRAVIS_BRANCH" == "develop" || "$TRAVIS_BRANCH" =~ ^v|release/[[:digit:]]+\.[[:digit:]]+(\.[[:digit:]]+)?(-\S*)?$ ]]; then
PPO_SCRIPT_BRANCH=master
else
# Early exit, this branch doesn't require documentation build
exit $exit_code;
fi

export DEPLOY_DOCS_SH=https://raw.githubusercontent.com/PaddlePaddle/PaddlePaddle.org/$PPO_SCRIPT_BRANCH/scripts/deploy/deploy_docs.sh

docker run -it \
-e CONTENT_DEC_PASSWD=$CONTENT_DEC_PASSWD \
-e TRAVIS_BRANCH=$TRAVIS_BRANCH \
-e DEPLOY_DOCS_SH=$DEPLOY_DOCS_SH \
-e TRAVIS_PULL_REQUEST=$TRAVIS_PULL_REQUEST \
-e PPO_SCRIPT_BRANCH=$PPO_SCRIPT_BRANCH \
-e PADDLE_ROOT=/book \
-v "$PWD:/book" \
-w /book \
paddlepaddle/paddle:latest-dev \
/bin/bash -c 'curl $DEPLOY_DOCS_SH | bash -s $CONTENT_DEC_PASSWD $TRAVIS_BRANCH /book /book/build/doc/ $PPO_SCRIPT_BRANCH' || exit_code=$(( exit_code | $? ))

2 changes: 1 addition & 1 deletion 02.recognize_digits/train.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def main():

test_reader = paddle.batch(paddle.dataset.mnist.test(), batch_size=64)

use_cuda = False # set to True if training with GPU
use_cuda = False # set to True if training with GPU
place = fluid.CUDAPlace(0) if use_cuda else fluid.CPUPlace()

trainer = fluid.Trainer(
Expand Down
3 changes: 1 addition & 2 deletions 04.word2vec/train.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@
N = 5
BATCH_SIZE = 100


use_cuda = False # set to True if training with GPU
use_cuda = False # set to True if training with GPU

word_dict = paddle.dataset.imikolov.build_dict()
dict_size = len(word_dict)
Expand Down
2 changes: 1 addition & 1 deletion 06.understand_sentiment/train_conv.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,5 +162,5 @@ def main(use_cuda):


if __name__ == '__main__':
use_cuda = False # set to True if training with GPU
use_cuda = False # set to True if training with GPU
main(use_cuda)
2 changes: 1 addition & 1 deletion 06.understand_sentiment/train_dyn_rnn.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,5 +179,5 @@ def main(use_cuda):


if __name__ == '__main__':
use_cuda = False # set to True if training with GPU
use_cuda = False # set to True if training with GPU
main(use_cuda)
2 changes: 1 addition & 1 deletion 06.understand_sentiment/train_stacked_lstm.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,5 +170,5 @@ def main(use_cuda):


if __name__ == '__main__':
use_cuda = False # set to True if training with GPU
use_cuda = False # set to True if training with GPU
main(use_cuda)
2 changes: 1 addition & 1 deletion 08.machine_translation/train.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,5 +128,5 @@ def main(use_cuda):


if __name__ == '__main__':
use_cuda = False # set to True if training with GPU
use_cuda = False # set to True if training with GPU
main(use_cuda)

0 comments on commit d17f2d2

Please sign in to comment.