seanPudding
Results
2
comments of
seanPudding
search for **action_beam_offset = action_ind / action_sapce_size** and **top_unique_beam_offset = top_unique_idx / action_sapce_size** and then modify them to **action_beam_offset = action_ind // action_sapce_size** and **top_unique_beam_offset = top_unique_idx // action_sapce_size** This...
> action_beam_offset = action_ind / action_sapce_size (src/rl/graph_search/beam_search.py line:62) top_unique_beam_offset = top_unique_idx / action_sapce_size (src/rl/graph_search/beam_search.py line:105)