keras-rl2 icon indicating copy to clipboard operation
keras-rl2 copied to clipboard

Reinforcement learning with tensorflow 2 keras

Results 16 keras-rl2 issues
Sort by recently updated
recently updated
newest added

I am trying to log the training of my agent over time. I am used to using tensorboard, however when I try and create a callback, i get an error...

I am getting the following error trying to install keras-rl2 on my M1 Macbook. The tensorflow version I have is 2.4.0rc0. ERROR: Cannot install keras-rl2==1.0.0, keras-rl2==1.0.1, keras-rl2==1.0.2, keras-rl2==1.0.3 and keras-rl2==1.0.4...

Hello. First of all, I am using version 1.0.3 but the issue holds for the latest (1.0.4) version. My problem is that the reference to my `model` is being messed...

`DDPGAgent` fails to train on the critic model while using a `MultiInputProcessor` within its `backward` method, specifically at [lines 260-263](https://github.com/wau/keras-rl2/blob/bb6565647dddf305d77373993770fc975af04ab6/rl/agents/ddpg.py#L260): ``` if len(self.critic.inputs) >= 3: state1_batch_with_action = state1_batch[:] else: state1_batch_with_action...

I run the program "examples/dqn_cartpole.py ", but there was error. The error is that: ``` IndexError: list index out of range ``` According to message, that happens in line 46....

Guys, Keras-rl is the best reinforcement learning library. easy to handle despite complex rl algorithmic. Keras-rl is far moore better than stable baseline. please add ppo, a3c and other as...

Whenever I try to run the ddpg_pendulum example (or any other DDPG example), I always get the error > ValueError: Variable Tensor("Mean_1:0", shape=(), dtype=float32) has `None` for gradient. Please make...

Hello, is there a way to implement a custom preprocessing / featurizing routine into the training process? Is such a feature already available? I am currently making use of a...

While running either DDPG agent, I encounter a value error in a Tensorflow 2 ops.py method. The problem appears to be recreated whenever the AdditionalUpdatesOptimizer class is initialized. Error: >ValueError:...

bug