How can we run anchor_tabular.AnchorTabularExplainer in batch incrementally for large set of training data? I need help to do adaptively learning after laoding anchor_tabular.AnchorTabularExplainer learned from previous chunk of data. Thanks!!!
explainer = anchor_tabular.AnchorTabularExplainer(
dataset.class_names,
dataset.feature_names,
train_chunk_i,
dataset.categorical_names)
How can we run
anchor_tabular.AnchorTabularExplainerin batch incrementally for large set of training data? I need help to do adaptively learning after laodinganchor_tabular.AnchorTabularExplainerlearned from previous chunk of data. Thanks!!!