Julius Kittler

Results 9 comments of Julius Kittler

@QuanluZhang Thank you for getting back. It seems to me that the example you shared covers only `sklearn`. What if I want to do model selection and hyperparameter tuning, allowing...

@slimeth I don't think there is any solution yet for Grid Search with CV in scikit-learn. I switched to using Bayesian Optimization for hyperparameter tuning: https://optuna.org

Same issue with 1.71.0 when trying to install lightGBM for GPU: Found OpenCL: C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.2/lib/x64/OpenCL.lib (found version "1.2") OpenCL include directory: C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.2/include CMake...

This helped: https://stackoverflow.com/questions/57870032/cmake-v3-15-3-cannot-find-boost-v1-71-0 I had to specify my path C:\boost\boost_1_71_0 as boost directory.

I also had this issue with poetry 1.1.5. Switching back to poetry 1.1.4 solved it for me.

@Miffyli thanks a lot, that's very helpful. I get your point with the sidenote. Overwriting the actions before they get passed into the list (`mb_actions.append(actions)`) seems like a good idea...

@Miffyli I should have noticed that myself - you're right. Thanks again for the hint. I might still give it a try after all for some initial steps. In my...

@matthew-hsr @araffin @Miffyli does the observation space need to contain information about past time steps when using any of the policies with an `Lstm`? For instance, in the example by...

In response to @mcapuccini, in my case I was looking at the scaled values of the TD-errors at first and they seemed to be going down. However, when I looked...