You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
you could take a look at our experiment repository, which contains all the code to re-create the experiments shown in the paper, including the animated showcase.
More specifically, the method animate might be what you are looking for:
Thank you for the reply. I managed to use the animate function and generate the corresponding gif.
In the process, I found that the plotter class already has a function called build_animation() here
However, I think this function calls _animate() and the pattern used in the animate function perhaps needs some modifications. For example pattern = os.path.splitext(logpath)[0] + f"__{screen}epoch*.png"
I think here it should be {epoch} instead of hardcoded epoch because of the way the plot function saves the data. Similarly, you have to tweak the path returned from get_logpath() a bit to make it work. I think it would be easier if we can directly use get_logpath().
Can you please add saving the plots as a gif or a video as it will make it easier to just take a look and understand things once the training ends?
The text was updated successfully, but these errors were encountered: