Skip to content

Commit

Permalink
Add import and update output path
Browse files Browse the repository at this point in the history
  • Loading branch information
henrykironde committed May 8, 2024
1 parent 51859bf commit 3feb32c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion combine_bird_predictions.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import os
import sys
import shutil
from zipfile import ZIP_DEFLATED
from zipfile import ZipFile
import geopandas
Expand All @@ -19,7 +20,7 @@ def combine(paths):
if __name__ == "__main__":
working_dir = tools.get_working_dir()
predictions_path = f"{working_dir}/predictions/"
output_path = f"{working_dir}/EvergladesTools/App/Zooniverse/data"
output_path = f"{working_dir}/everwatch-workflow/App/Zooniverse/data"
output_zip = os.path.join(output_path, "PredictedBirds.zip")

predictions = sys.argv[1:]
Expand Down

0 comments on commit 3feb32c

Please sign in to comment.