Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
ff4841f
Final Polish: Feature 1 code and tests (Clean Submission)
XinxinTai-coder Dec 6, 2025
75569ab
Merge branch 'dev' into feat/Xinxin/tests_version2
XinxinTaiCoder Dec 7, 2025
0798f9f
Fix: Create package structure and add missing __init__.py files
XinxinTai-coder Dec 7, 2025
12686ab
Merge branch 'feat/Xinxin/tests_version2' of github.com:architjain19/…
XinxinTai-coder Dec 7, 2025
80ec94d
Fix: Remove conflicting empty package to allow import from src module
XinxinTai-coder Dec 7, 2025
39f7bce
Fix: Update import path in test_edge.py to match new src structure
XinxinTai-coder Dec 7, 2025
3231ad5
Fix: Add missing Anomaly and DetectionResult classes to detection stub
XinxinTai-coder Dec 7, 2025
ccb458e
Fix: Add loader stubs (PointCloudFrame, BagLoader) to satisfy test de…
XinxinTai-coder Dec 7, 2025
6050dba
Fix: Add preprocessing stub to satisfy test dependencies
XinxinTai-coder Dec 7, 2025
2d69b62
Fix: Add loader stubs (BagLoader) to satisfy test dependencies
XinxinTai-coder Dec 7, 2025
d266c26
Fix: Update import paths in all test files to match new src structure
XinxinTai-coder Dec 7, 2025
f78a8b6
Fix: Update import paths in source code (report_generator) to match n…
XinxinTai-coder Dec 7, 2025
11d197d
Fix: Address TA feedback on HW3 - Split tests into 4 files, fix metad…
XinxinTai-coder Dec 12, 2025
61af844
Merge dev into feature branch: Accept real implementation in src, kee…
XinxinTai-coder Dec 12, 2025
3e7c418
Fix: Add try-except guard for TemporalSyncValidator import to prevent…
XinxinTai-coder Dec 12, 2025
f62c209
Fix temporal sync validator for MockStream and ignore pycache
XinxinTai-coder Dec 12, 2025
c9c4f8c
HW3: finalize reviewer attribution and clean module header
XinxinTai-coder Dec 12, 2025
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
12 changes: 12 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,18 @@ reports/
# Datasets
dataset/

# Accept current change
output_report/
2011_09_26/
*.png
*.zip

# Accept incoming change
# Tests
.coverage*data/sequences/
scripts/


# Python cache
__pycache__/
*.pyc
Loading