| 8 | |
| 9 | @dataclass |
| 10 | class Args: |
| 11 | algo: str = "mbd" # path_integral, mbd |
| 12 | update_method: str = "mppi" # softmax, cma-es, cem |
| 13 | mode: str = "seed" # temp |
| 14 | env_name: str = "ant" |
| 15 | |
| 16 | |
| 17 | def run_multiple_seed(args: Args): |
nothing calls this directly
no outgoing calls
no test coverage detected