Skip to content

Commit

Permalink
feat: update default value for env_config `EMBEDDED_TEXT_AGGREGATION_…
Browse files Browse the repository at this point in the history
…SUBREGION_THRESHOLD`
  • Loading branch information
christinestraub committed Mar 22, 2024
1 parent 9f33f90 commit 590b893
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion unstructured_inference/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def EMBEDDED_TEXT_AGGREGATION_SUBREGION_THRESHOLD(self) -> float:
When the intersection region area divided by self area is larger than this threshold self is
considered a subregion of the other
"""
return self._get_float("EMBEDDED_TEXT_AGGREGATION_SUBREGION_THRESHOLD", 0.95)
return self._get_float("EMBEDDED_TEXT_AGGREGATION_SUBREGION_THRESHOLD", 0.99)

@property
def ELEMENTS_H_PADDING_COEF(self) -> float:
Expand Down

0 comments on commit 590b893

Please sign in to comment.