我想最小化一个功能,但是不能继续前进。
问题设置:
mtcars$gender <- c(rep(1, 10), rep(0, 4), rep(1, 6), rep(0 , 12))
predictions <- data.frame(
c(0.05, 0.03, 0.99, 0.07, 0.00, 0.10, 0.00, 0.84, 0.92, 0.01, 0.03, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 1.00, 1.00, 1.00, 0.97, 0.00, 0.00, 0.00, 0.00, 1.00, 0.86, 0.84, 0.01, 0.08, 0.00, 0.86),
c(0.95, 0.97, 0.01, 0.80, 0.07, 0.82, 0.00, 0.14, 0.08, 0.95, 0.94, 0.03, 0.03, 0.03, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.03, 0.02, 0.07, 0.02, 0.01, 0.00, 0.12, 0.16, 0.10, 0.79, 0.05, 0.13),
c(0.00, 0.00, 0.00, 0.13, 0.93, 0.08, 1.00, 0.02, 0.00, 0.04, 0.03, 0.97, 0.97, 0.97, 1.00, 1.00, 1.00, 0.00, 0.00, 0.00, 0.00, 0.98, 0.93, 0.98, 0.99, 0.00, 0.02, 0.00, 0.89, 0.13, 0.95, 0.01))
colnames(predictions) <- c(4, 6, 8)
actual.probs <- apply(predictions, 1, which.max)
actual.probs <- as.data.frame.matrix(prop.table(table(mtcars$gender, actual.probs)))
real.probs <- data.frame(matrix(c(0.1, 0.1, 0.2, 0.2, 0.2, 0.2), nrow = 2, ncol = 3))
我使用了一种预测算法,该算法将汽车的概率设为4,6或8缸。结果存储在“预测”中。但是,分布(actual.probs
)与实际(real.probs
)中的分布不同。为了进行调整,我想将概率乘以权重,得到概率最高的概率,然后重新计算表格。我想要的结果是权重,我需要从实际分布中获得最小的偏差。
optimresult <- predictions
fn <- function(v) {
weight1 <- v[1]
weight2 <- v[2]
weight3 <- v[3]
optimresult[,1] <- optimresult[,1] * weight1
optimresult[,2] <- optimresult[,2] * weight2
optimresult[,3] <- optimresult[,3] * weight3
result <- apply(optimresult, 1, which.max) # get highest probablity
actualprobs <- prop.table(table(mtcars[["gender"]], result))
return <- sum(abs(real.probs - actualprobs))
}
optim(c(1, 1, 1), fn)
起始值全为1,但是该功能似乎不起作用。我在做什么错了?
答案 0 :(得分:0)
问题在于,对optim()中的参数值进行很小的更改不会更改结果,这意味着算法认为该算法在实际收敛之前就已经收敛。
使用SANN方法可获得更好的结果。我不确定使用该样本数据集是否可以获得最佳结果。
我也对您的功能进行了一些简化。
fn <- function(v) {
weighted_preds = predictions * v
result = apply(weighted_preds, 1, which.max) # get highest probablity
actualprobs = prop.table(table(mtcars[["gender"]], result))
sum(abs(real.probs - actualprobs))
}
optim(c(100, 1, 1), fn, method="SANN")
尝试不同的起始值,看看是否可以改善。增加预测数量也将有所帮助。