Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified src/v1/results/amae_comparison.pdf
Binary file not shown.
Binary file modified src/v1/results/confusion_matrix_gpt-5_piqa.pdf
Binary file not shown.
Binary file not shown.
Binary file modified src/v1/results/confusion_matrix_gpt5_odinw_Aquarium.pdf
Binary file not shown.
Binary file modified src/v1/results/confusion_matrix_gpt5_odinw_BCCD.pdf
Binary file not shown.
Binary file modified src/v1/results/confusion_matrix_gpt5_odinw_ChessPieces.pdf
Binary file not shown.
Binary file modified src/v1/results/confusion_matrix_gpt5_odinw_DroneControl.pdf
Binary file not shown.
Binary file modified src/v1/results/confusion_matrix_gpt5_odinw_EgoHands.pdf
Binary file not shown.
Binary file modified src/v1/results/confusion_matrix_gpt5_odinw_HardHatWorkers.pdf
Binary file not shown.
Binary file modified src/v1/results/confusion_matrix_gpt5_odinw_MaskWearing.pdf
Binary file not shown.
Binary file modified src/v1/results/confusion_matrix_gpt5_odinw_PKLot.pdf
Binary file not shown.
Binary file not shown.
Binary file modified src/v1/results/confusion_matrix_gpt5_odinw_ThermalCheetah.pdf
Binary file not shown.
Binary file modified src/v1/results/confusion_matrix_gpt5_odinw_UnoCards.pdf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified src/v1/results/confusion_matrix_gpt5_odinw_dice.pdf
Binary file not shown.
Binary file modified src/v1/results/confusion_matrix_gpt5_odinw_selfdrivingCar.pdf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified src/v1/results/confusion_matrix_magma_odinw_Aquarium.pdf
Binary file not shown.
Binary file modified src/v1/results/confusion_matrix_magma_odinw_BCCD.pdf
Binary file not shown.
Binary file modified src/v1/results/confusion_matrix_magma_odinw_ChessPieces.pdf
Binary file not shown.
Binary file modified src/v1/results/confusion_matrix_magma_odinw_DroneControl.pdf
Binary file not shown.
Binary file modified src/v1/results/confusion_matrix_magma_odinw_EgoHands.pdf
Binary file not shown.
Binary file modified src/v1/results/confusion_matrix_magma_odinw_HardHatWorkers.pdf
Binary file not shown.
Binary file modified src/v1/results/confusion_matrix_magma_odinw_MaskWearing.pdf
Binary file not shown.
Binary file modified src/v1/results/confusion_matrix_magma_odinw_PKLot.pdf
Binary file not shown.
Binary file not shown.
Binary file modified src/v1/results/confusion_matrix_magma_odinw_ThermalCheetah.pdf
Binary file not shown.
Binary file modified src/v1/results/confusion_matrix_magma_odinw_UnoCards.pdf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified src/v1/results/confusion_matrix_magma_odinw_dice.pdf
Binary file not shown.
Binary file modified src/v1/results/confusion_matrix_magma_odinw_selfdrivingCar.pdf
Binary file not shown.
Binary file not shown.
Binary file modified src/v1/results/confusion_matrix_magma_piqa.pdf
Binary file not shown.
17,914 changes: 30 additions & 17,884 deletions src/v1/results/data_analysis.ipynb

Large diffs are not rendered by default.

10 changes: 7 additions & 3 deletions src/v1/results/data_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,12 @@ def barplot(dataframe, title, ylabel, xlabel, save_path, y='Exact Match Rate', y
}

#%% load Pi-0 results
with open('./pi0/pi0_base_openx_results_final.json') as f:
pi0_base_openx = json.load(f)
try:
with open('./pi0/pi0_base_openx_results_final.json') as f:
pi0_base_openx = json.load(f)
except FileNotFoundError:
with open('./pi0/pi0_base_openx_results.json') as f:
pi0_base_openx = json.load(f)
with open('./pi0/pi0_base_overcooked_results.json') as f:
pi0_base_overcooked = json.load(f)
with open('./pi0/pi0_hf_bfcl_inference_results.json') as f:
Expand Down Expand Up @@ -185,7 +189,7 @@ def barplot(dataframe, title, ylabel, xlabel, save_path, y='Exact Match Rate', y

pi0_bfcl_emr = extract_key_from_json(pi0_hf_bfcl_inference, 'exact_match_accuracy')
magma_bfcl_emr = extract_key_from_json(magma_bfcl, 'exact_match_accuracy')
gpt5_bfcl_emr = [0.285] # referenced from literature
gpt5_bfcl_emr = None
log_count('Pi-0 BFCL exact match', pi0_bfcl_emr)
log_count('Magma BFCL exact match', magma_bfcl_emr)

Expand Down
Binary file modified src/v1/results/emr_comparison.pdf
Binary file not shown.
Binary file modified src/v1/results/f1_comparison.pdf
Binary file not shown.
Binary file modified src/v1/results/macro_f1_comparison.pdf
Binary file not shown.
Binary file modified src/v1/results/macro_precision_comparison.pdf
Binary file not shown.
Binary file modified src/v1/results/macro_recall_comparison.pdf
Binary file not shown.
Binary file modified src/v1/results/openx_namse_comparison.pdf
Binary file not shown.
Binary file modified src/v1/results/precision_comparison.pdf
Binary file not shown.
Binary file modified src/v1/results/recall_comparison.pdf
Binary file not shown.
Binary file modified src/v1/results/similarity_score_comparison.pdf
Binary file not shown.