Update README.md

This commit is contained in:
Shunichi09 2020-05-04 07:59:04 +09:00 committed by GitHub
parent 215bf5d28c
commit 222b606c20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -160,9 +160,9 @@ Then you can make each module. (This is example about CEM and CartPole env)
config = configs.CartPoleConfigModule()
env = envs.CartPoleEnv()
model = models.CartPoleModel(config)
planner = controllers.CEM(config, model)
runner = planners.ConstantPlanner(config)
controller = runners.ExpRunner()
controller = controllers.CEM(config, model)
planner = planners.ConstantPlanner(config)
runner = runners.ExpRunner()
```
The preparation for experiment has done!
@ -223,4 +223,4 @@ author = {Shunichi Sekiguchi},
title = {PythonLinearNonlinearControl},
note = "\url{https://github.com/Shunichi09/PythonLinearNonlinearControl}",
}
```
```