Datasets:
Fix reconstruct.py default input path (stale 18-file-era filename -> current dataset)
Browse files- reconstruct.py +2 -2
reconstruct.py
CHANGED
|
@@ -10,7 +10,7 @@ to interpret the frame axis.
|
|
| 10 |
|
| 11 |
Usage:
|
| 12 |
python reconstruct.py
|
| 13 |
-
python reconstruct.py --input data/
|
| 14 |
python reconstruct.py --frame-index 45
|
| 15 |
"""
|
| 16 |
|
|
@@ -29,7 +29,7 @@ import zea
|
|
| 29 |
from zea import Config, File, Pipeline
|
| 30 |
|
| 31 |
HERE = Path(__file__).parent
|
| 32 |
-
DEFAULT_INPUT = HERE / "data" / "
|
| 33 |
DEFAULT_OUTPUT = HERE / "outputs" / "reconstruct_example.png"
|
| 34 |
CONFIG = HERE / "pipeline.yaml"
|
| 35 |
|
|
|
|
| 10 |
|
| 11 |
Usage:
|
| 12 |
python reconstruct.py
|
| 13 |
+
python reconstruct.py --input data/baseline_R45_H8__point_z080_r4.hdf5
|
| 14 |
python reconstruct.py --frame-index 45
|
| 15 |
"""
|
| 16 |
|
|
|
|
| 29 |
from zea import Config, File, Pipeline
|
| 30 |
|
| 31 |
HERE = Path(__file__).parent
|
| 32 |
+
DEFAULT_INPUT = HERE / "data" / "baseline_R45_H8__point_z080_r4.hdf5"
|
| 33 |
DEFAULT_OUTPUT = HERE / "outputs" / "reconstruct_example.png"
|
| 34 |
CONFIG = HERE / "pipeline.yaml"
|
| 35 |
|