lbgitjp

Results 4 issues of lbgitjp

Because when proxy starts, we will set the **RootCertificate**, this will delete the **crts** directory in the disk. So we either use the newly created certificate (and save it in...

I think below code maybe has problem: https://github.com/JoshuaWu1997/PyTorch-DDPG-Stock-Trading/blob/0c5c2f9095f5871d26b573fd960fb772f4ea050b/DDPG.py#L85-L90 The two gradients need to be calculated separately, because their loss functions are different. I think it should be changed to below:...

below code: https://github.com/JoshuaWu1997/PyTorch-DDPG-Stock-Trading/blob/0c5c2f9095f5871d26b573fd960fb772f4ea050b/DDPG.py#L120 Shouldn't above line of code be modified to below? `allocation = self.actor_network.actor_action(next_state_data).data.view(-1)` thanks!

the weight update code as below: https://github.com/tensorflow/playground/blob/02469bd3751764b20486015d4202b792af5362a6/src/nn.ts#L357-L358 To better understand for beginners, the weight update code is better modified to: `link.weight = link.weight - learningRate * (link.accErrorDer / link.numAccumulatedDers) ;...