Add demo files (#23)

* Add demo files

* Add demo path on run files and change formatting

* Delete discrete demo
This commit is contained in:
Kyunghwan Kim
2019-03-14 14:02:24 +09:00
committed by GitHub
parent ca5c99bc41
commit b4f8bd58b4
4 changed files with 12 additions and 7 deletions
+7
View File
@@ -37,6 +37,13 @@ parser.add_argument(
default=0,
help="start rendering after the input number of episode",
)
parser.add_argument(
"--demo-path",
type=str,
default="data/lunarlander_continuous_demo.pkl",
help="demonstration path",
)
parser.add_argument("--save-period", type=int, default=100, help="save model period")
parser.add_argument("--log", action="store_true", help="turn on logging")
parser.add_argument("--test", action="store_true", help="test mode (no training)")