Skip to content
Snippets Groups Projects
Commit a1a55199 authored by Hashim Sharif's avatar Hashim Sharif
Browse files

Adding optional working dir to main.py

parent ac31ebbc
No related branches found
No related tags found
No related merge requests found
...@@ -70,6 +70,9 @@ SCP_HOST = "root@espgate.cs.columbia.edu" ...@@ -70,6 +70,9 @@ SCP_HOST = "root@espgate.cs.columbia.edu"
SCP_PWD = "openesp" SCP_PWD = "openesp"
SCP_DST = "~/NV_NVDLA" SCP_DST = "~/NV_NVDLA"
if len(sys.argv) > 1:
WORKING_DIR = Path(sys.argv[1])
# Reproducibility # Reproducibility
np.random.seed(42) np.random.seed(42)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment