今天碰巧看到了Google 2011 I/O 上发布的一段视频,看完才知道原来还有Prediction api这么好玩的东西。原理应该是机器学习和聚类分析。
这个可以拿来做“失眠”的那个项目
Google prediction api
put prediction/v1.2/training/io11%2fmy_data
{
"classLabel":"#youtube",
"cvsInstance":["I just saw thic wicked cool video"]
}
Subscript Pretrain Model
POST prediction/v1.2/hostedmodels/[model_name]/predit
{"input":{
"csvInstance":[col1_value,col2_value,...]}
}
konw sentiment
prediction .hsostedmodels.predict(
{'hostedModelName':'sample.sentiment',
'input':{'csvInstance':[...]}
}