-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Made visualization load lazy * Updated eval version --------- Co-authored-by: Ishan Khatri <[email protected]>
- Loading branch information
1 parent
96722bc
commit d39f6f2
Showing
9 changed files
with
190 additions
and
257 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/bin/bash | ||
|
||
# Define the source and target directories | ||
SOURCE_DIR="/efs2/argoverse2_submission_evals" | ||
TARGET_DIR="/home/k/code/offline_sceneflow_eval/visualization/perf_data/threeway_epe" | ||
|
||
# Iterate over each subfolder in the source directory | ||
for SUBFOLDER in "$SOURCE_DIR"/*; do | ||
# Extract the name of the subfolder | ||
FOLDER_NAME=$(basename "$SUBFOLDER") | ||
# Define the source file path | ||
SOURCE_FILE="${SUBFOLDER}/eval_results/per_class_results_35.json" | ||
# Define the target file path, appending the subfolder name for uniqueness | ||
TARGET_FILE="${TARGET_DIR}/${FOLDER_NAME}_per_class_results_35.json" | ||
# Copy the file from the source to the target directory | ||
cp "$SOURCE_FILE" "$TARGET_FILE" | ||
done | ||
|
||
echo "Copy completed." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/bash | ||
for f in /efs2/argoverse2_submission_evals/*; do | ||
echo "Processing $f file..." | ||
# Extract the full filename without the path | ||
filename=$(basename -- "$f") | ||
python ~/code/bucketed_scene_flow_eval/scripts/evals/av2_eval.py /efs/argoverse2/test/ /efs/argoverse2/test_sceneflow_feather "/efs2/argoverse2_submission_evals/$filename/submission" "/efs2/argoverse2_submission_evals/$filename/eval_results" --eval_type threeway_epe --cache_root /tmp/av2_evals --cpu_count 46 | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/bash | ||
|
||
for f in /efs/argoverse2/test_*_submission.zip; do | ||
echo "Processing $f file..." | ||
# Extract the full filename without the path | ||
filename=$(basename -- "$f") | ||
# Remove the .zip extension to get the stem | ||
stem="${filename%.zip}" | ||
python ~/code/bucketed_scene_flow_eval/scripts/evals/setup_sparse_user_submission.py "/efs2/argoverse2_submission_evals/$stem/" $f /efs/argoverse2/test_sceneflow_feather | ||
done |
Oops, something went wrong.