rongaoli
Results
2
issues of
rongaoli
I follow the example: https://voidful.dev/jupyter/2021/07/25/textrl-elon-musk.html I wonder why batchsize is larger than update_ Interval, so I modify as follows: **before:** `agent = actor.agent_ppo(update_interval=10, minibatch_size=2000, epochs=20)` **after:** `agent = actor.agent_ppo(update_interval=100, minibatch_size=10,...
Hello, I noticed that you have trained a classification model (Critic). How did you overcome the problem of category imbalance in data? As far as I know, accepted solutions should...