ML:R's Caret中的大多数模型都可以使用Python吗?

时间:2018-09-19 02:06:06

标签: python r scikit-learn r-caret

R的插入符号显然支持广泛的模型,只需更改method即可访问:

fit <- caret::train(y = as.vector(y), 
                      x = x, 
                      method = BstLm, 
                      trControl = ctrl,
                      preProc = c("center", "scale"))

以下插入符号列表中的大多数模型在Python中是否可用(通过scikit-learn或其他方式)?

https://topepo.github.io/caret/available-models.html

例如,我想在Python中实现Boosted Linear Model method ='BstLm',但找不到任何方法,当然不是简单地在插入符号中更改一个变量的方法。

0 个答案:

没有答案