Skip to content

Commit

Permalink
Update run_simulation.py
Browse files Browse the repository at this point in the history
  • Loading branch information
yjwong1999 committed Jun 14, 2023
1 parent 69853c3 commit 8607560
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions run_simulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@

# get argument from user
parser = argparse.ArgumentParser()
parser.add_argument('--store-path', type = str, required = True, help="pretrained model weight path")
parser.add_argument('--path', type = str, required = True, help="pretrained model weight path")

args = parser.parse_args()
STORE_PATH = args.store_path
STORE_PATH = args.path

# validate the weight path
if not os.path.isdir(STORE_PATH):
Expand Down

0 comments on commit 8607560

Please sign in to comment.