predictionio 部署脚本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了predictionio 部署脚本相关的知识,希望对你有一定的参考价值。

cd <folder name>
dt=date ‘+%Y-%m-%d %H:%M:%S‘
echo $dt ‘ start to run‘>> whk.log
PATH=$PATH:/<folder name>/PredictionIO-0.12.0-incubating/bin; export PATH
pio train >> whk.log 2>&1
temp=netstat -anp 2&gt;/dev/null | grep 4040 | awk ‘{print $7}‘ | sed ‘s/[a-z\/]//g‘
if [ "$temp" = "" ]; then
echo "no find the thread" >> whk.log
else
echo "kill the thread:$temp" >> whk.log
kill -9 $temp
fi

pio deploy >> whk.log 2>&1
echo ‘finish‘>> whk.log

以上是关于predictionio 部署脚本的主要内容,如果未能解决你的问题,请参考以下文章

predictionio 随机森林

predictionIO E-Commerce Recommendation 买了又买-物相似

predictionIO E-Commerce Recommendation 源码分析

基于 PredictionIO 搭建全栈式机器学习平台

导致资产预编译在heroku部署上失败的代码片段

14-Jenkins-Pipeline实现自动部署