How severe does this issue affect your experience of using Ray?
- Low: It annoys or frustrates me for a moment.
from ray.rllib.algorithms.ppo import PPO, PPOConfig
.
.
.
my_ppo_config = PPOConfig()
my_trainer1 = PPO(env='CartPole-v0') # Trainer 1
my_trainer2 = my_ppo_config.build(env='CartPole-v0') # Trainer 2
My question is…are Trainer 1 and Trainer 2 the SAME at this stage - since both of them use the default config of PPO?
Also, how do I know the ‘groups’ of settings that I can change as:
my_config = PPOConfig()\
.training(lr=0.001)\
.framework("torch")\
.rollouts(num_rollout_workers=2)
as the document Ray RLlib 2.0 Changes - Google Docs talks about how it’s easier to do it from the editor without going back and forth from documentation? How is that possible? Please help. Thank you