(self, path_to_conf_file='config_agent.yaml', ckpt = None)
| 8 | |
| 9 | class RlBirdviewAgent(): |
| 10 | def __init__(self, path_to_conf_file='config_agent.yaml', ckpt = None): |
| 11 | |
| 12 | self._render_dict = None |
| 13 | self.supervision_dict = None |
| 14 | self._ckpt = ckpt |
| 15 | self.setup(path_to_conf_file) |
| 16 | |
| 17 | def setup(self, path_to_conf_file): |
| 18 | cfg = OmegaConf.load(path_to_conf_file) |