mirror of
https://github.com/wassname/kair_algorithms_draft.git
synced 2026-09-11 12:20:26 +08:00
Remove DDPG (#28)
* Change default algorithm from DDPG to SAC * Remove DDPG examples * Remove DDPG algorithms DDPG, DDPG+PER, DDPGfD * Fix parser bug in LunarLanderContinuous
This commit is contained in:
committed by
Whi Kwon
parent
b4f8bd58b4
commit
00c3dc4286
@@ -17,7 +17,7 @@ parser = argparse.ArgumentParser(description="Pytorch RL baselines")
|
||||
parser.add_argument(
|
||||
"--seed", type=int, default=777, help="random seed for reproducibility"
|
||||
)
|
||||
parser.add_argument("--algo", type=str, default="ddpg", help="choose an algorithm")
|
||||
parser.add_argument("--algo", type=str, default="sac", help="choose an algorithm")
|
||||
parser.add_argument(
|
||||
"--load-from",
|
||||
type=str,
|
||||
@@ -38,12 +38,6 @@ parser.add_argument(
|
||||
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)")
|
||||
|
||||
Reference in New Issue
Block a user