Browse Source

Setup main run for data upload

moritz 3 years ago
parent
commit
7f97a5b0ac
2 changed files with 5 additions and 4 deletions
  1. 1 0
      .gitignore
  2. 4 4
      scripts/spatial_network/perlin_map/run_simulation_perlin_map.py

+ 1 - 0
.gitignore

@@ -49,4 +49,5 @@ MANIFEST
 .venv*/
 
 # Output data
+data
 logs

+ 4 - 4
scripts/spatial_network/perlin_map/run_simulation_perlin_map.py

@@ -179,13 +179,13 @@ def main():
 
     # To test if the simulation, analysis and plotting work as intended, use this setup to have a lower overall runtime
 
-    scale_range = [200.0]
-    seed_range = [1]
+    # scale_range = [200.0]
+    # seed_range = [1]
 
     # TODO: This is the parameter range used for the results shown in Fig 4. Uncomment for the full run.
 
-    # scale_range = np.linspace(1.0, 800.0, 24, endpoint=True).tolist()
-    # seed_range = range(10)
+    scale_range = np.linspace(1.0, 800.0, 24, endpoint=True).tolist()
+    seed_range = range(10)
 
     ellipsoid_parameter_exploration = {
         "morphology.long_axis": [100.0],