Skip to content

Commit

Permalink
fix save path for StockNeurIPS2018_2_train
Browse files Browse the repository at this point in the history
  • Loading branch information
Mohamad Rostami committed Apr 5, 2023
1 parent 924f1cf commit 575be9c
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -754,7 +754,7 @@
},
"outputs": [],
"source": [
"trained_ddpg.save(TRAINED_MODEL_DIR + \"agent_ddpg\") if if_using_ddpg else None"
"trained_ddpg.save(TRAINED_MODEL_DIR + \"/agent_ddpg\") if if_using_ddpg else None"
]
},
{
Expand Down Expand Up @@ -812,7 +812,7 @@
},
"outputs": [],
"source": [
"trained_ppo.save(TRAINED_MODEL_DIR + \"agent_ppo\") if if_using_ppo else None"
"trained_ppo.save(TRAINED_MODEL_DIR + \"/agent_ppo\") if if_using_ppo else None"
]
},
{
Expand Down Expand Up @@ -868,7 +868,7 @@
},
"outputs": [],
"source": [
"trained_td3.save(TRAINED_MODEL_DIR + \"agent_td3\") if if_using_td3 else None"
"trained_td3.save(TRAINED_MODEL_DIR + \"/agent_td3\") if if_using_td3 else None"
]
},
{
Expand Down Expand Up @@ -928,7 +928,7 @@
},
"outputs": [],
"source": [
"trained_sac.save(TRAINED_MODEL_DIR + \"agent_sac\") if if_using_sac else None"
"trained_sac.save(TRAINED_MODEL_DIR + \"/agent_sac\") if if_using_sac else None"
]
},
{
Expand Down

0 comments on commit 575be9c

Please sign in to comment.