mkdir -p demo/serving/bin mv bin/serving demo/serving/bin mkdir -p demo/client/bin mv bin/dense_format demo/client/bin/ mv bin/echo demo/client/bin mv bin/int64tensor_format demo/client/bin mv bin/sparse_format demo/client/bin mv bin/text_classification demo/client/bin mv bin/text_classification_press demo/client/bin mv bin/ximage demo/client/bin cp baidu_third-party_mklml/so/* demo/serving/bin/ rm -rf baidu_third-party_mklml # Download test model and test dataset pushd . cd demo/client/data mkdir -p text_classification cd text_classification wget --no-check-certificate https://paddle-serving.bj.bcebos.com/data/text_classification/test_set.tar.gz tar zxvf test_set.tar.gz popd pushd . cd demo/serving/ mkdir -p data/model/paddle/fluid/ cd data/model/paddle/fluid/ wget --no-check-certificate https://paddle-serving.bj.bcebos.com/data/text_classification/text_classification_lstm.tar.gz tar zxvf text_classification_lstm.tar.gz