diff --git a/app/services/layout_detector.py b/app/services/layout_detector.py index 3fb8918..d03ea6e 100644 --- a/app/services/layout_detector.py +++ b/app/services/layout_detector.py @@ -134,7 +134,7 @@ class LayoutDetector: ) ) - mixed_recognition = any(region.type == "text" and region.score > 0.85 for region in regions) + mixed_recognition = any(region.type == "text" and region.score > 0.6 for region in regions) return LayoutInfo(regions=regions, MixedRecognition=mixed_recognition)