我在 Watson Studio 的 Notebook 中使用 R 库“原型”训练了原型分析模型,我想将其部署到 IBM Cloud Watson Machine Learning 并使用该服务预测新数据点的 alpha 系数。
我知道通过创建 WML Python 客户端在 python 中做到这一点。是否有等效的 Watson Machine Learning R 客户端?
#Archetypal analysis example
library("archetypes")
data("skel")
skel2 <- subset(skel, select = -Gender)
set.seed(8376)
train_ind <- sample(seq_len(nrow(skel2)), size = 450)
skel_t <- skel2[train_ind, ]
new_data <- skel2[train_ind, ]
as <- stepArchetypes(skel_t, k=1:12, verbose = FALSE, nrep=5)
a3 <- bestModel(as[[3]]) #select the model with 3 archetypes
alpha_pred <- predict(object = a3, newdata = new_data) #predicted alpha for new data