ELF
ELF copied to clipboard
An End-To-End, Lightweight and Flexible Platform for Game Research
Dev3
Dev2
This PR aims to fix the CI build of the repo on Travis. I have listed my findings on #136. Basically, Tower Defense (TD) and Capture the Flag (CF) are...
In this PR, I've deleted all mentions to the `async` keyword in the master branch of ELF to resume compatibility of the repository with Python 3.7 ELF uses `async` as...
This PR ensures the model is evaluation mode at evaluation time. Failure to do so cause incorrect behavior, especially if the model contains dropout or BatchNorm layers.
This PR updates the code base to be somewhat compatible with the new version of Pytorch. Note that the new Pytorch version includes fixes in important things like the multinomial...
This simple PR add supports for boolean parameters in the argument parser. This enables to use the following kind of argument declaration `("bool_flag", dict(type='bool', default=False , help="Example boolean flag"))` Then...
hhhggg
Per this change in PyTorch: https://github.com/pytorch/pytorch/pull/2872 (post v0.2.0) Without the patch, I see the following error: ``` Traceback (most recent call last): File "train.py", line 24, in model = env["model_loaders"][0].load_model(GC.params)...