(Fixes PaddlePaddle/PaddleOCR#18064) fix: guard against KMeans n_clusters=0 crash in table recognition pipeline #5140
Open
Mane2305 wants to merge 1 commit into
Conversation
|
Thanks for your contribution! |
Author
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.


(Fixes PaddlePaddle/PaddleOCR#18064)
Problem
When using PPStructureV3 with engine="transformers" and
wireless_table_structure_recognition_model_name="SLANeXt_wireless",
the pipeline crashes with:
sklearn.utils._param_validation.InvalidParameterError:
The 'n_clusters' parameter of KMeans must be an int in the
range [1, inf). Got 0 instead.
Related issue: #5140
Root Cause
SLANeXt does not support resampling in the transformers engine
(logged as a warning), which causes zero cell detections.
This zero value propagates to KMeans as n_clusters=0 → crash.
Two code paths trigger this:
Fix
rectangles list is empty
cells_det_results_reprocessing()
Testing
Tested locally with paddleocr==3.5.0, transformers==5.9.0 on Windows.
Pipeline now completes successfully instead of crashing.
Before fix:
[transformers] Resampling is not supported in SLANeXt
❌ InvalidParameterError: n_clusters=0
After fix:
[transformers] Resampling is not supported in SLANeXt
✅ Prediction done