File size: 19,404 Bytes
2948983 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 | """OCR top-label๊ณผ Tray ์ฌ๋กฏ ๊ณ์ฝ์ lattice candidate score๋ก ๋ณํํ๋ค."""
from __future__ import annotations
from dataclasses import dataclass
import math
from typing import Any, Sequence
import numpy as np
from .cross_visual import CrossVisualModel, cross_pair_feature_rows
from .expression_contracts import horizontal_sides, segments_complete
from .equality_visual import EqualityVisualModel, equality_pair_feature_rows
from .math_tray import infer_math_trays
from .segmentation_lattice import LATTICE_FEATURE_NAMES
from .structure_relations import STRUCTURAL_RELATION_TYPES, infer_spatial_relations
ANCHOR_TYPES = {
r"\sqrt": "ROOT", r"\sqrt{}": "ROOT",
r"\int": "INTEGRAL", r"\oint": "INTEGRAL", r"\iint": "INTEGRAL", r"\iiint": "INTEGRAL",
r"\sum": "LARGE_OPERATOR", r"\prod": "LARGE_OPERATOR", r"\lim": "LARGE_OPERATOR",
}
RELIABLE_MULTISTROKE = {"i", r"\pi", r"\rightarrow", r"\pm", r"\leq", r"\geq"}
MULTISTROKE_FAMILY_LABELS = frozenset({
r"\sum", r"\Sigma", r"\pi", r"\Pi", r"\rightarrow", r"\shortrightarrow",
r"\longrightarrow", r"\Rightarrow", r"\neq",
r"\not\equiv", r"\pm",
})
MULTISTROKE_FAMILY_NAMES = frozenset({
r"\pi", r"\rightarrow", r"\shortrightarrow", r"\longrightarrow",
r"\Rightarrow", r"\neq", r"\not\equiv", r"\pm",
})
def _multistroke_family_geometry_guard(
label: str,
family: str,
feature_row: np.ndarray,
) -> bool:
"""ํ์ ๋ณ์: ํฉ์น OCR label/familyยทlattice geometry. ์๋ ์๋ฆฌ: ์์ฑ ๋จ์ผ๊ธฐํธ ์ด์ ๋จน๋ ๋์ alias ํ๋ณด๋ฅผ ์ฐจ๋จํ๋ค."""
width_ref = float(feature_row[2])
height_ref = float(feature_row[3])
pair_gap_max = float(feature_row[12])
if label == r"\Sigma" and width_ref < 2.0:
return False
if (label == r"\pm" or family == r"\pm") and height_ref > 2.0:
return False
arrow_family = {
r"\rightarrow", r"\shortrightarrow", r"\longrightarrow", r"\Rightarrow",
}
if (label in arrow_family or family in arrow_family) and pair_gap_max > 0.50:
return False
return True
@dataclass(frozen=True, slots=True)
class TrayJointWeights:
"""ํ์ ๋ณ์: validation ์ ํ ๊ฐ์ค์น. ์๋ ์๋ฆฌ: ๊ตฌ์กฐ ๋ณด๋์ค์ ๋ must-not-link ๊ฐ์ ์ ํ ๊ณ์ฝ์ผ๋ก ๊ณ ์ ํ๋ค."""
tray: float = 4.0
symbol: float = 4.0
fraction: float = 8.0
infix: float = 8.0
competition: float = 0.0
local_baseline: float = 0.0
group_bias: float = -2.0
def component_competition_penalties(
candidates: Sequence[dict[str, Any]],
features: np.ndarray,
*,
mode: str = "joint",
) -> np.ndarray:
"""ํ์ ๋ณ์: lattice ํ๋ณดยทOCR merge gain. ์๋ ์๋ฆฌ: ํฉ์น OCR์ด ๊ตฌ์ฑํ๋ณด๋ค ์ฝํ ๋คํ ํ๋ณด์ must-not-link ๊ฐ์ ์ค๋ค."""
if len(candidates) != len(features):
raise ValueError("component competition candidate/feature ์๊ฐ ๋ค๋ฆ
๋๋ค.")
if mode not in {"top1", "joint"}:
raise ValueError(f"์ง์ํ์ง ์๋ component competition mode์
๋๋ค: {mode}")
merge_index = len(LATTICE_FEATURE_NAMES) + 6
entropy_index = len(LATTICE_FEATURE_NAMES) + 7
penalties = np.zeros(len(candidates), dtype=np.float32)
for index, candidate in enumerate(candidates):
if len(candidate["source_indices"]) <= 1:
continue
merge_gain = float(features[index][merge_index])
deficit = -merge_gain
if mode == "joint":
deficit -= 0.5 * float(features[index][entropy_index])
penalties[index] = min(1.0, max(0.0, deficit))
return penalties
def _group_box(group: frozenset[int], strokes: Sequence[dict[str, Any]]) -> dict[str, float]:
"""ํ์ ๋ณ์: stroke groupยท์ขํ. ์๋ ์๋ฆฌ: candidate์ context symbol์ bbox๋ฅผ ๊ณ์ฐํ๋ค."""
points = [point for index in group for point in strokes[index]["points"]]
xs, ys = [float(point[0]) for point in points], [float(point[1]) for point in points]
return {"left": min(xs), "top": min(ys), "right": max(xs), "bottom": max(ys)}
def _recognized_segment(box: dict[str, float], label: str, score: float, family: str = "") -> dict[str, Any]:
"""ํ์ ๋ณ์: ํ๋ณด bboxยทtop label/familyยทํ๋ฅ . ์๋ ์๋ฆฌ: Tray์ ๋ถ๋ถ์ parser์ฉ ์ต์ OCR segment๋ฅผ ๋ง๋ ๋ค."""
return {"box": box, "results": {"expanded": {"candidates": [{
"label": label, "score": score, "visual_family": family,
}]}}}
def local_baseline_boundary_penalties(
strokes: Sequence[dict[str, Any]],
candidates: Sequence[dict[str, Any]],
ocr_labels: Sequence[str],
features: np.ndarray,
base_partition: Sequence[frozenset[int]],
*,
ocr_families: Sequence[str] | None = None,
) -> np.ndarray:
"""ํ์ ๋ณ์: ์ด๊ธฐ partitionยทOCR segmentยท๊ณต๊ฐ ๊ด๊ณ. ์๋ ์๋ฆฌ: ์ฒจ์ยท๋ถ์ ๋ฑ ๊ตฌ์กฐ ๊ฒฝ๊ณ ์์ชฝ์ ๋์์ ๋จน๋ ๋ณํฉ๋ง ๊ฐ์ ํ๋ค."""
count = len(candidates)
if len(ocr_labels) != count or len(features) != count:
raise ValueError("local baseline candidate/label/feature ์๊ฐ ๋ค๋ฆ
๋๋ค.")
families = list(ocr_families or [""] * count)
if len(families) != count:
raise ValueError("local baseline candidate/family ์๊ฐ ๋ค๋ฆ
๋๋ค.")
index_by_group = {
frozenset(int(value) for value in candidate["source_indices"]): index
for index, candidate in enumerate(candidates)
}
partition_groups = [frozenset(group) for group in base_partition if frozenset(group) in index_by_group]
top1_index = len(LATTICE_FEATURE_NAMES)
segments = []
for group in partition_groups:
index = index_by_group[group]
segments.append(_recognized_segment(
_group_box(group, strokes), ocr_labels[index],
float(features[index][top1_index]), families[index],
))
trays = infer_math_trays(segments)
relations = infer_spatial_relations(segments, trays=trays)
structural_edges = [
(
partition_groups[int(relation["parent"])],
partition_groups[int(relation["child"])],
float(relation["confidence"]),
)
for relation in relations
if str(relation["type"]) in STRUCTURAL_RELATION_TYPES
]
penalties = np.zeros(count, dtype=np.float32)
for index, candidate in enumerate(candidates):
group = frozenset(int(value) for value in candidate["source_indices"])
if len(group) <= 1:
continue
penalties[index] = max(
(
confidence for parent, child, confidence in structural_edges
if group & parent and group & child
),
default=0.0,
)
return penalties
def _candidate_box(
candidate: dict[str, Any], group: frozenset[int], strokes: Sequence[dict[str, Any]],
) -> dict[str, float]:
"""ํ์ ๋ณ์: lattice ํ๋ณดยท์ stroke. ์๋ ์๋ฆฌ: cache bbox๋ฅผ ์ฐ์ ์ฌ์ฌ์ฉํ๊ณ ์ต์ ์
๋ ฅ์ ๊ณ์ฐ์ผ๋ก ํธํํ๋ค."""
box = candidate.get("box")
return dict(box) if isinstance(box, dict) else _group_box(group, strokes)
def _point_xy(point: Any) -> tuple[float, float]:
"""ํ์ ๋ณ์: ๋ฐฐ์ด ๋๋ ๊ฐ์ฒดํ point. ์๋ ์๋ฆฌ: ํ ํํ ๊ณ์ฐ์ฉ ์ขํ๋ฅผ ๊ณตํต ํ์์ผ๋ก ์ฝ๋๋ค."""
if isinstance(point, dict):
return float(point.get("x", 0.0)), float(point.get("y", 0.0))
return float(point[0]), float(point[1])
def _stroke_direction(stroke: dict[str, Any]) -> tuple[float, float]:
"""ํ์ ๋ณ์: ๋ ์ ์ด์์ธ stroke. ์๋ ์๋ฆฌ: ์ฒซยท๋์ ๋ฒกํฐ๋ฅผ ๋ฐฉํฅ ์ ๊ทํํด ํํยท๊ต์ฐจ ํํ๋ฅผ ํ์ ํ๋ค."""
points = stroke.get("points") or []
if len(points) < 2:
return 0.0, 0.0
start, end = _point_xy(points[0]), _point_xy(points[-1])
dx, dy = end[0] - start[0], end[1] - start[1]
length = math.hypot(dx, dy)
return (dx / length, dy / length) if length > 1e-6 else (0.0, 0.0)
def _completed_operand_context_score(
group: frozenset[int], group_box: dict[str, float], context: Sequence[tuple[frozenset[int], dict[str, Any]]],
) -> float:
"""ํ์ ๋ณ์: ์ค์ ํ๋ณด bboxยท์ด๊ธฐ partition. ์๋ ์๋ฆฌ: ์ข๋ณยท์ฐ๋ณ์ด ๋ชจ๋ ์๋ฃ๋ ํํ์ผ ๋๋ง ๊ตฌ์กฐ ์ ์๋ฅผ ์ฐ๋ค."""
usable = [(other_group, segment) for other_group, segment in context if not other_group & group]
left, right = horizontal_sides(group_box, usable)
return 1.0 if segments_complete(left) and segments_complete(right) else 0.0
def _occupied_operand_context_score(
group: frozenset[int], group_box: dict[str, float], context: Sequence[tuple[frozenset[int], dict[str, Any]]],
) -> float:
"""ํ์ ๋ณ์: ๊ต์ฐจ์ ํ๋ณดยทํ์ฌ partition. ์๋ ์๋ฆฌ: ๊ณฑ์
์ OCR ๋ฌธ๋ฒ์ ๊ฐ์ ํ์ง ์๊ณ ๊ฐ์ ํ์ ์์ชฝ ์ ์ ๋ง ํ์ธํ๋ค."""
usable = [(other_group, segment) for other_group, segment in context if not other_group & group]
left, right = horizontal_sides(group_box, usable)
return 1.0 if left and right else 0.0
def _infix_shape_score(
group: frozenset[int], strokes: Sequence[dict[str, Any]], stroke_boxes: Sequence[dict[str, float]],
) -> tuple[str, float]:
"""ํ์ ๋ณ์: ๋ ํ ํ๋ณดยท์ฌ์ ๊ณ์ฐ bbox. ์๋ ์๋ฆฌ: ํํ์ equality์ ๊ต์ฐจ์ multiply family๋ฅผ ๋ถ๋ฆฌํด ๋ฐํํ๋ค."""
if len(group) != 2:
return "", 0.0
first_index, second_index = sorted(group)
first, second = strokes[first_index], strokes[second_index]
first_direction, second_direction = _stroke_direction(first), _stroke_direction(second)
horizontal = min(abs(first_direction[0]), abs(second_direction[0]))
vertical_leak = max(abs(first_direction[1]), abs(second_direction[1]))
first_box, second_box = stroke_boxes[first_index], stroke_boxes[second_index]
first_width = max(first_box["right"] - first_box["left"], 1e-6)
second_width = max(second_box["right"] - second_box["left"], 1e-6)
x_overlap = max(0.0, min(first_box["right"], second_box["right"]) - max(first_box["left"], second_box["left"]))
overlap_ratio = x_overlap / min(first_width, second_width)
length_ratio = min(first_width, second_width) / max(first_width, second_width)
first_y = (first_box["top"] + first_box["bottom"]) * 0.5
second_y = (second_box["top"] + second_box["bottom"]) * 0.5
separation_ratio = abs(first_y - second_y) / max((first_width + second_width) * 0.5, 1e-6)
parallel = abs(first_direction[0] * second_direction[0] + first_direction[1] * second_direction[1])
if (
horizontal >= 0.92 and vertical_leak <= 0.38 and parallel >= 0.94
and overlap_ratio >= 0.60 and length_ratio >= 0.60 and 0.04 <= separation_ratio <= 0.65
):
return "equality", min(1.0, 0.35 + 0.25 * overlap_ratio + 0.20 * length_ratio + 0.20 * parallel)
diagonal = min(abs(first_direction[0] * first_direction[1]), abs(second_direction[0] * second_direction[1])) * 2.0
opposite_slopes = first_direction[0] * first_direction[1] * second_direction[0] * second_direction[1] < 0.0
x_intersects = max(first_box["left"], second_box["left"]) <= min(first_box["right"], second_box["right"])
y_intersects = max(first_box["top"], second_box["top"]) <= min(first_box["bottom"], second_box["bottom"])
if opposite_slopes and x_intersects and y_intersects and diagonal >= 0.55:
return "multiply", min(1.0, diagonal)
return "", 0.0
def candidate_signals(
strokes: Sequence[dict[str, Any]], candidates: Sequence[dict[str, Any]],
ocr_labels: Sequence[str], features: np.ndarray, base_partition: Sequence[frozenset[int]],
*, ocr_families: Sequence[str] | None = None, strict_equality: bool = False,
equality_model: EqualityVisualModel | None = None, cross_model: CrossVisualModel | None = None,
cross_gap_ratio: float = 0.40,
multistroke_family_boost: float = 6.0,
) -> tuple[np.ndarray, np.ndarray, np.ndarray]:
"""ํ์ ๋ณ์: ์ strokeยทํ๋ณด/label/featureยทcross/family ์ค์ . ์๋ ์๋ฆฌ: Trayยท์ ๋ขฐ labelยท์ค์์ evidence๋ฅผ ๊ณ์ฐํ๋ค."""
count = len(candidates)
if len(ocr_labels) != count or len(features) != count:
raise ValueError("Tray joint candidate/label/feature ์๊ฐ ๋ค๋ฆ
๋๋ค.")
if cross_gap_ratio < 0.0:
raise ValueError("cross gap ratio๋ 0 ์ด์์ด์ด์ผ ํฉ๋๋ค.")
if multistroke_family_boost < 0.0:
raise ValueError("multistroke family boost๋ 0 ์ด์์ด์ด์ผ ํฉ๋๋ค.")
families = list(ocr_families or [""] * count)
if len(families) != count:
raise ValueError("Tray joint candidate/family ์๊ฐ ๋ค๋ฆ
๋๋ค.")
tray_signal = np.zeros(count, dtype=np.float32)
symbol_signal = np.zeros(count, dtype=np.float32)
infix_signal = np.zeros(count, dtype=np.float32)
top1 = features[:, len(LATTICE_FEATURE_NAMES)]
stroke_boxes = [_group_box(frozenset({index}), strokes) for index in range(len(strokes))]
index_by_group = {
frozenset(int(value) for value in candidate["source_indices"]): index
for index, candidate in enumerate(candidates)
}
pair_groups = [
frozenset(int(value) for value in candidate["source_indices"])
for candidate in candidates if len(candidate["source_indices"]) == 2
]
equality_probability: dict[frozenset[int], float] = {}
cross_probability: dict[frozenset[int], float] = {}
if equality_model is not None and pair_groups:
ordered_pairs = [tuple(sorted(group)) for group in pair_groups]
pair_rows = equality_pair_feature_rows(ordered_pairs, strokes)
equality_probability = {
group: equality_model.probability(row) for group, row in zip(pair_groups, pair_rows, strict=True)
}
if cross_model is not None and pair_groups:
nonzero_heights = [box["bottom"] - box["top"] for box in stroke_boxes if box["bottom"] - box["top"] > 1e-5]
reference = float(np.median(nonzero_heights)) if nonzero_heights else 1.0
plausible_groups = []
for group in pair_groups:
first_index, second_index = sorted(group)
first_box, second_box = stroke_boxes[first_index], stroke_boxes[second_index]
x_gap = max(first_box["left"] - second_box["right"], second_box["left"] - first_box["right"], 0.0)
y_gap = max(first_box["top"] - second_box["bottom"], second_box["top"] - first_box["bottom"], 0.0)
if x_gap <= reference * cross_gap_ratio and y_gap <= reference * cross_gap_ratio:
plausible_groups.append(group)
ordered_pairs = [tuple(sorted(group)) for group in plausible_groups]
pair_rows = cross_pair_feature_rows(ordered_pairs, strokes)
cross_probability = {
group: cross_model.probability(row) for group, row in zip(plausible_groups, pair_rows, strict=True)
}
context = [
(
group,
_recognized_segment(
_candidate_box(candidates[index_by_group[group]], group, strokes),
ocr_labels[index_by_group[group]], float(top1[index_by_group[group]]), families[index_by_group[group]],
),
)
for group in base_partition
]
for index, candidate in enumerate(candidates):
group = frozenset(int(value) for value in candidate["source_indices"])
label = ocr_labels[index]
group_box = _candidate_box(candidate, group, strokes)
shape_family, shape_score = _infix_shape_score(group, strokes, stroke_boxes)
learned_equality = equality_probability.get(group, 0.0)
learned_cross = cross_probability.get(group, 0.0)
if equality_model is not None and learned_equality >= equality_model.threshold:
shape_family, shape_score = "equality", learned_equality
if cross_model is not None and learned_cross >= cross_model.threshold and learned_cross > learned_equality:
# threshold ์ง์๋จ์ ๋ถํ์คํ pair๊ฐ ํฐ ๋ณํฉ ๋ณด๋์ค๋ฅผ ๋ฐ์ง ์๋๋ก ์ด๊ณผ margin๋ง ์ฌ์ฉํ๋ค.
margin = (learned_cross - cross_model.threshold) / max(1.0 - cross_model.threshold, 1e-6)
shape_family, shape_score = "cross_visual", min(1.0, max(0.0, margin))
if shape_family == "equality":
# ๋ฑํธ ์ธ์์ ์์ ์์ฑ ์ฌ๋ถ์ ๋
๋ฆฝ์ ์ด๋ค. parser๋ shadow ๋ถ์์์๋ง gatingํ๋ค.
context_score = _completed_operand_context_score(group, group_box, context) if strict_equality else 1.0
elif shape_family == "cross_visual":
context_score = 1.0
else:
context_score = _occupied_operand_context_score(group, group_box, context)
infix_signal[index] = shape_score * context_score
if len(group) > 1:
if label in RELIABLE_MULTISTROKE:
symbol_signal[index] = float(top1[index])
if (
label in MULTISTROKE_FAMILY_LABELS
or families[index] in MULTISTROKE_FAMILY_NAMES
) and _multistroke_family_geometry_guard(
label, families[index], features[index],
):
# ํฉ์น OCR family๊ฐ ์ด๋ฏธ ์ด์ ์์ ๋๋ง ์ถ๊ฐํ๋ค. ์ธ์ ํ์ด๋ผ๋ ์ด์ ๋ง์ผ๋ก ๋ณํฉํ์ง ์๋๋ค.
symbol_signal[index] += float(top1[index]) * multistroke_family_boost
tray_type = ANCHOR_TYPES.get(label)
if tray_type is None:
continue
anchor = _recognized_segment(_group_box(group, strokes), label, float(top1[index]), families[index])
segments = [anchor, *(segment for other_group, segment in context if not other_group & group)]
matches = (
tray for tray in infer_math_trays(segments)
if tray["anchor"] == 0 and tray["type"] == tray_type and tray["required_satisfied"]
)
tray_signal[index] = max((float(tray["constraint_score"]) for tray in matches), default=0.0)
return tray_signal, symbol_signal, infix_signal
def adjusted_logits(
base_logits: np.ndarray, tray_signal: np.ndarray, symbol_signal: np.ndarray,
fraction_penalty: np.ndarray, weights: TrayJointWeights, infix_signal: np.ndarray | None = None,
competition_penalty: np.ndarray | None = None,
local_baseline_penalty: np.ndarray | None = None,
) -> np.ndarray:
"""ํ์ ๋ณ์: base logitยท๊ตฌ์กฐ signalยท์ธ penalty. ์๋ ์๋ฆฌ: joint selector ๋ชฉ์ ํจ์์ candidate logit์ ๋ง๋ ๋ค."""
effective_infix = np.zeros_like(base_logits) if infix_signal is None else infix_signal
effective_competition = (
np.zeros_like(base_logits) if competition_penalty is None else competition_penalty
)
effective_local_baseline = (
np.zeros_like(base_logits) if local_baseline_penalty is None else local_baseline_penalty
)
arrays = (
base_logits, tray_signal, symbol_signal, fraction_penalty,
effective_infix, effective_competition, effective_local_baseline,
)
if len({len(values) for values in arrays}) != 1:
raise ValueError("Tray joint logit๊ณผ signal ๊ธธ์ด๊ฐ ๋ค๋ฆ
๋๋ค.")
return (
base_logits + weights.tray * tray_signal + weights.symbol * symbol_signal
+ weights.infix * effective_infix - weights.fraction * fraction_penalty
- weights.competition * effective_competition
- weights.local_baseline * effective_local_baseline
)
|