Jack Carreira

Results 18 comments of Jack Carreira
trafficstars

It was 0.6.0 Upgraded to 0.7.1 Worked perfectly as default. Sorry about that :shame:

Your question has two answers: > why some examples in the same class are different A class is an alphabet, so this is okay. All different characters on the english...

Hi again @JC-chen97 ! I ended up adding this at the init function: ``` self.lang_folders = [os.path.join(data_folder, family) for family in os.listdir(data_folder) if os.path.isdir(os.path.join(data_folder, family))] ``` So now `self.lang_folders` contains...

> The fixed code is cool, which clearly samples different classes(language) . I have no doubt about it now. Thanks! You're welcome! :) > Besides, I still have 2 questions...

> > Why it should be 1623 classes? I didn't understand issue #1 question either. If you have 1623 classes, you'll have one example of each. > > I think...

@tweakimp Both ways of calling the map, with and without spaces, are valid. _AbyssalReefLE_ produces the same result. Any other name in the Maps folder, too. An invalid name returns...

I realized that I downloaded the linux package version 3.17, while there is a **4.1.2** version. https://github.com/Blizzard/s2client-proto#downloads I downloaded that, copied the maps inside `Maps`, and a new similar exception...

Hi, I'm experimenting with a custom env on rlpyt. I've the intention to use different data for training and testing (env shows novel states on testing/evaluation vs training). I have...

Not sure this is what you're looking for, just started exploring rlpyt, but in my case I defined a custom env as a class like you did, and then pass...

> Ok, I'm getting this error now if I just pass the env class directly: > > ``` > agent.initialize(envs[0].spaces, share_memory=False, > AttributeError: 'DummyEnv' object has no attribute 'spaces' >...