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
The nested list structure returned by GetInferenceSignals and RerunForSignals is unnecessarily complicated. Replace it with tibbles with a list-valued column, e.g.:
these_signals <- GetInferenceSignalsForParameter(model_grads$param_infls[[param_name]])
signals_df <- tibble()
for (qoi_name in names(this_signals)) {
signals_df <- bind_rows(
signals_df,
tibble(param=param_name, qoi_name=qoi_name) %>%
mutate(signal=list(this_signals[[qoi_name]])))
}
The text was updated successfully, but these errors were encountered:
The nested list structure returned by
GetInferenceSignals
andRerunForSignals
is unnecessarily complicated. Replace it with tibbles with a list-valued column, e.g.:The text was updated successfully, but these errors were encountered: