You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@mb706 I've found the same but on a much smaller scale, but the memory allocation was higher than it should be, this is due to the do.call(data.table, c(cols, list(check.names = TRUE))) in https://github.com/mlr-org/mlr3misc/blob/main/R/purrr_map.R#L129 as a fix I've used the following, i.e. using setDT():
When the function in
map_dtc
returns adata.table
with many rows,map_dtc
appears to be slower than it needs to be by a factor of about 100.profvis tells me this this is because
name_dots
is called in data.table.The text was updated successfully, but these errors were encountered: