Vowpal Wabbit is a machine learning system which pushes the frontier of machine learning with techniques such as online, hashing, allreduce, reductions, learning2search, active, and interactive learning.
In debug mode, when the number of slots input to CCB exceeds the number of actions, execution logs the issue to cerr in and exits learn_and_predict. This results in an unallocated action_ids array later in rl::fb_serializer, which causes a crash.
https://github.com/VowpalWabbit/vowpal_wabbit/blob/3f5793d9920fdff44f674cd4252180411da1cff5/vowpalwabbit/conditional_contextual_bandit.cc#L113-L120
In debug mode, when the number of slots input to CCB exceeds the number of actions, execution logs the issue to
cerr
in and exitslearn_and_predict
. This results in an unallocatedaction_ids
array later in rl::fb_serializer, which causes a crash.