Skip to content

Commit 1c2cc6b

Browse files
committed
Fix model imports
1 parent 2f49fe1 commit 1c2cc6b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

robot_nav/train.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
from models.TD3.TD3 import TD3
2-
from models.DDPG.DDPG import DDPG
3-
from models.SAC.SAC import SAC
4-
from models.HCM.hardcoded_model import HCM
5-
from models.PPO.PPO import PPO
1+
from robot_nav.models.TD3.TD3 import TD3
2+
from robot_nav.models.DDPG.DDPG import DDPG
3+
from robot_nav.models.SAC.SAC import SAC
4+
from robot_nav.models.HCM.hardcoded_model import HCM
5+
from robot_nav.models.PPO.PPO import PPO
66
from robot_nav.models.CNNTD3.CNNTD3 import CNNTD3
77

88
import torch
@@ -36,7 +36,7 @@ def main(args=None):
3636
)
3737
save_every = 10 # save the model every n training cycles
3838

39-
model = TD3(
39+
model = PPO(
4040
state_dim=state_dim,
4141
action_dim=action_dim,
4242
max_action=max_action,

0 commit comments

Comments
 (0)