MAX
MAX copied to clipboard
Code for reproducing experiments in Model-Based Active Exploration, ICML 2019
Results
2
MAX issues
Sort by
recently updated
recently updated
newest added
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...
Hello. There is a discussion of discrete case in the paper. Am I right, that this implementation does not consider the discrete state case?