- Low: It annoys or frustrates me for a moment.
Hi everyone! I’m pretty new to rllib som I’m still trying to make the config of my BC algo more efficient. I’ve been migrating from using the old-school config dict to use the new method of config=BCConfig.environment(…).rollouts(…) etc. I’ve been trying to search around for the arguments to solve the custom model import. Today I do it in the config dict like this:
“model”: {
“vf_share_layers”: True,
“custom_model”: “cfc”,
“custom_model_config”: {
“cell_size”: cell_size,
“obs_space”: obs_space,
“num_outputs”: num_outputs
},
}
Is there anyone having a link to where it says how this should be done with the new method or and example? My search so far has led me to belive it should be done in BCConfig.training(model= {dict here maybe? )
Thanks in advance.