docs(P6): reframe README around scaffold thesis and 5-arm results - #15
Conversation
Summary by BeetleThis PR reframes the project's README around the "Scaffold Thesis" — the principle that geometry scaffolds structure for free while deep learning earns its keep on objects. The documentation now presents comprehensive S3DIS Area-5 benchmark results across five distinct evaluation arms (geometry_only, hybrid, hybrid_v2, feature_ml, and PointNet++), demonstrating that rule-based geometry captures ~63.6% of structural points with high fidelity (floor IoU: 0.963), while deep learning (PointNet++: 0.3523 mIoU) proves necessary for complex furniture classification. The README transformation shifts from a simple "how it works" guide to a research-backed narrative with quantitative evidence, detailed metrics tables, and clear takeaways about the boundary between geometric and learned approaches. 📁 File Changes Summary
Total Changes: 1 file changed, +79 additions, -35 deletions 🎯 Key Changes
📊 Impact Assessment
⚙️ SettingsSeverity Threshold: 📖 User Guide
|
|
Warning Review limit reached
Next review available in: 58 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. ✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
✅ You're good to merge this PR! No issues found. Great job! Settings⚙️ SettingsSeverity Threshold: 📖 User Guide
|
There was a problem hiding this comment.
Code Review
This pull request updates the README.md to introduce the Scaffold Thesis, include detailed S3DIS Area-5 benchmark results, and reorganize the pipeline architecture, quickstart, and documentation sections. The review feedback highlights two documentation inconsistencies: step 2 of the quickstart incorrectly describes running the 'Segment-ML Pipeline' instead of the rule-based geometric pipeline, and the documented output filenames are inconsistent with those listed in implementation.md.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
| ### 2. Run the Segment-ML Pipeline | ||
| Segment the room and predict using the feature-ML model: |
There was a problem hiding this comment.
The Quickstart section describes step 2 as running the 'Segment-ML Pipeline' and predicting using the 'feature-ML model'. However, main.py orchestrates the rule-based geometric pipeline (SemanticLabeler with heuristics) rather than the classical Random Forest model (feature_ml). Please update the description to accurately reflect that this command runs the rule-based geometric pipeline.
| ### 2. Run the Segment-ML Pipeline | |
| Segment the room and predict using the feature-ML model: | |
| ### 2. Run the Geometric Pipeline | |
| Segment the room and predict using rule-based geometric heuristics: |
| ```bash | ||
| python3 -m src.interactive_viewer --input outputs/segmented_room.ply | ||
| ``` | ||
| *Each run generates `segmented_room.ply` (labeled cloud), `segmentation_report.json` (validated cluster report), and `segmentation_viz.png` (2D top-down footprint map).* |
There was a problem hiding this comment.
There is an inconsistency in the output filenames documented across different files. Here, it states that the pipeline generates segmented_room.ply, segmentation_report.json, and segmentation_viz.png. However, implementation.md (lines 1013-1015) lists them as segmented.ply, report.json, and topdown_map.png. Please standardize these filenames across all documentation files to avoid confusion.
This PR updates README.md to focus on the scaffold thesis and includes the final 5-arm S3DIS Area-5 benchmark results table.