Thank you for your excellent work! I encountered an issue while reproducing the code.
When running
python src/data/06A_make_dataset_post.py
I got the following error:
05_persist_pixels_masks.py: error: the following arguments are required: polygon_layer
I checked the 05_persist_pixels_masks.py file and found that it requires two mandatory arguments: output_path and polygon_layer.
However, in 06A_make_dataset_post.py, the call is:
os.system("python src/data/05_persist_pixels_masks.py data/processed/files")
which only provides one argument (output_path).
Is this an oversight? How should I modify this call to make it work properly?
Thank you for your excellent work! I encountered an issue while reproducing the code.
When running
python src/data/06A_make_dataset_post.py
I got the following error:
05_persist_pixels_masks.py: error: the following arguments are required: polygon_layer
I checked the 05_persist_pixels_masks.py file and found that it requires two mandatory arguments: output_path and polygon_layer.
However, in 06A_make_dataset_post.py, the call is:
os.system("python src/data/05_persist_pixels_masks.py data/processed/files")
which only provides one argument (output_path).
Is this an oversight? How should I modify this call to make it work properly?