gpt4 book ai didi

r - 微基准测试结果检查失败,data.table 被引用更改

转载 作者:行者123 更新时间:2023-12-01 12:26:42 25 4
gpt4 key购买 nike

SO 上有一些答案,其中比较时间而不检查结果。但是,我更喜欢快速查看表达式是否正确

microbenchmark 包通过 check 参数支持这一点。遗憾的是,对于通过引用更改 data.table 的表达式,检查失败,即检查无法识别结果不同。

案例 1:检查按预期工作的 data.table 表达式

library(data.table)
library(microbenchmark)

# minimal data.table 1 col, 3 rows
dt <- data.table(x = c(1, 1, 10))

# define check function as in example section of help(microbenchmark)
my_check <- function(values) {
all(sapply(values[-1], function(x) identical(values[[1]], x)))
}

基准案例旨在返回不同的结果。因此,

microbenchmark(
f1 = dt[, mean(x)],
f2 = dt[, median(x)],
check = my_check
)

按预期返回错误消息:

Error: Input expressions are not equivalent.

案例二:data.table表达式检查失败

现在,表达式被修改为通过引用更改dt。请注意,使用了相同的检查功能。

microbenchmark(
f1 = dt[, y := mean(x)],
f2 = dt[, y := median(x)],
check = my_check
)

现在返回

 expr     min      lq     mean   median       uq     max neval cld
f1 576.947 625.174 642.9820 640.7110 661.1870 732.391 100 a
f2 602.022 658.384 684.7076 678.9975 694.0825 978.600 100 b

因此,虽然这两个表达式不同,但这里的结果检查失败了。 (时间无关紧要。)

我知道检查被确定失败是因为dt被引用改变了。因此,在比较每个表达式的结果时,总是在最后一次更改的状态中引用相同的对象。

问题

如何修改检查函数和/或表达式,以便即使在 data.table 被引用更改的情况下,检查也能可靠地检测到不同的结果?

最佳答案

最简单的方法是使用copy():

microbenchmark(
f1 = copy(dt)[, y := mean(x)],
f2 = copy(dt)[, y := median(x)],
check = my_check, times=1L
)
# Error: Input expressions are not equivalent.

copy(dt) 添加到组合中可以了解复制所花费的时间(如果有必要,人们总是可以从 f1 的运行时间中减去它和 f2)。

microbenchmark(
f1 = copy(dt)[, y := mean(x)],
f2 = copy(dt)[, y := median(x)],
f3 = copy(dt),
times=10L
)
# Unit: microseconds
# expr min lq mean median uq max neval cld
# f1 298.690 306.508 331.6364 315.1400 347.788 414.264 10 b
# f2 319.075 322.475 373.3873 329.3895 336.268 746.134 10 b
# f3 19.180 19.750 28.3504 25.1745 26.111 70.016 10 a

关于r - 微基准测试结果检查失败,data.table 被引用更改,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38716772/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com