Pietro Mazzaglia

Results 1 issues of Pietro Mazzaglia

I added a print in the rate_buffer function to check what blocks were being visited: ``` def rate_buffer(buffer): visited_blocks = [get_state_block(state) for state in buffer.states] print(set(visited_blocks)) n_unique = len(set(visited_blocks)) return...