Spaces:
Running
Running
File size: 18,548 Bytes
be0f59e | 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 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 | import json
import logging
import os
import re
import unicodedata
from pathlib import Path
from typing import Any, Optional
import pandas as pd
import yaml
CONFIG_PATH = Path("configs/structure_parser.yaml")
NO_CHAPTER = "__NO_CHAPTER__"
MAX_NON_ARTICLE_CHARS = 1200
PART_PATTERN = re.compile(r"^(?:PHẦN|Phần)\s+[IVXLCDM]+\b")
CHAPTER_PATTERN = re.compile(r"^(?:CHƯƠNG|Chương)\s+[IVXLCDM]+\b")
ARTICLE_PATTERN = re.compile(r"^Điều\s+(\d+)\.\s*(.*)", re.IGNORECASE)
CLAUSE_PATTERN = re.compile(r"^\d+\.\s+")
POINT_PATTERN = re.compile(r"^[a-zđ]\)\s+", re.IGNORECASE)
DOCUMENT_TITLE_PATTERNS = [
re.compile(r"^QUYẾT ĐỊNH\b", re.IGNORECASE),
re.compile(r"^QUY CHẾ\b", re.IGNORECASE),
re.compile(r"^QUY ĐỊNH\b", re.IGNORECASE),
re.compile(r"^PHỤ LỤC\b", re.IGNORECASE),
re.compile(r"^HƯỚNG DẪN\b", re.IGNORECASE),
]
def load_json(path: Path) -> Any:
if not path.exists():
raise FileNotFoundError(f"Missing file: {path}")
with open(path, "r", encoding="utf-8") as f:
return json.load(f)
def save_json(data: Any, path: Path) -> None:
path.parent.mkdir(parents=True, exist_ok=True)
with open(path, "w", encoding="utf-8") as f:
json.dump(data, f, ensure_ascii=False, indent=2)
def load_yaml(path: Path) -> dict[str, Any]:
if not path.exists():
raise FileNotFoundError(f"Missing config file: {path}")
with open(path, "r", encoding="utf-8") as f:
return yaml.safe_load(f)
def normalize_line(line: str) -> str:
line = line.strip()
line = re.sub(r"\s+", " ", line)
return line
def is_heading_like(line: str) -> bool:
if len(line) > 140:
return False
letters = [ch for ch in line if ch.isalpha()]
if not letters:
return False
uppercase_letters = [ch for ch in letters if ch.isupper()]
uppercase_ratio = len(uppercase_letters) / max(len(letters), 1)
return uppercase_ratio >= 0.55
def classify_line(line: str) -> str:
line = normalize_line(line)
if not line:
return "empty"
if PART_PATTERN.match(line):
return "part"
if CHAPTER_PATTERN.match(line):
return "chapter"
if ARTICLE_PATTERN.match(line):
return "article"
if CLAUSE_PATTERN.match(line):
return "clause"
if POINT_PATTERN.match(line):
return "point"
if is_heading_like(line):
for pattern in DOCUMENT_TITLE_PATTERNS:
if pattern.search(line):
return "document_title"
return "normal_text"
def pages_to_line_records(
pages: list[dict[str, Any]],
target_content_types: list[str],
) -> list[dict[str, Any]]:
line_records = []
for page in pages:
content_type = page.get("content_type")
if content_type not in target_content_types:
continue
page_number = page["page_number"]
text = page.get("text", "")
for line_index, line in enumerate(text.splitlines(), start=1):
clean_line = normalize_line(line)
if not clean_line:
continue
line_records.append(
{
"page_number": page_number,
"line_index": line_index,
"content_type": content_type,
"line": clean_line,
"line_type": classify_line(clean_line),
}
)
return line_records
def extract_article_info(line: str) -> tuple[str, str, int]:
match = ARTICLE_PATTERN.match(line)
if not match:
raise ValueError(f"Invalid article line: {line}")
article_number = int(match.group(1))
article = f"Điều {article_number}."
title = line
return article, title, article_number
def slugify_text(text: str) -> str:
text = text.lower()
text = re.sub(r"[^\w\s-]", "", text, flags=re.UNICODE)
text = re.sub(r"\s+", "_", text)
return text.strip("_")
def make_section_id(
section_level: str,
page_start: int,
index: int,
document_title: Optional[str] = None,
chapter: Optional[str] = None,
article: Optional[str] = None,
content_type: Optional[str] = None,
) -> str:
parts = []
if document_title:
parts.append(slugify_text(document_title))
if chapter and chapter != "__NO_CHAPTER__":
parts.append(slugify_text(chapter))
if article:
parts.append(slugify_text(article))
if parts:
base = "_".join(parts)
return f"{base}_p{page_start}_{index}"
prefix = content_type or section_level
prefix = slugify_text(prefix)
return f"{prefix}_p{page_start}_{index}"
def detect_has_table(content: str) -> bool:
lower = content.lower()
table_patterns = [
r"loại\s+thang điểm\s+10\s+thang điểm chữ",
r"thang điểm chữ\s+thang điểm\s+4",
r"tt\s+khung điểm\s+xếp loại",
r"nội dung đánh giá\s+khung điểm\s+điểm đánh giá",
r"chương trình đào tạo\s+thời gian\s+học tập chuẩn\s+thời gian\s+học tập tối đa",
r"tổng cộng:\s*đạt loại rèn luyện",
]
return any(re.search(pattern, lower) for pattern in table_patterns)
def detect_has_formula(content: str) -> bool:
lower = content.lower()
formula_patterns = [
r"điểm học bổng\s*=",
r"\ba\s+là\s+điểm trung bình",
r"\b[a-zA-Z]\s*=\s*",
r"\(.+\s*[+\-*/x]\s*.+\)",
r"\d+\s*[x*/]\s*\d+",
r"/\s*\d+",
]
return any(re.search(pattern, lower) for pattern in formula_patterns)
def detect_has_scoring_rule(content: str) -> bool:
lower = content.lower()
scoring_keywords = [
"thang điểm",
"điểm thành phần",
"điểm học phần",
"điểm học bổng",
"điểm rèn luyện",
"điểm trung bình",
"xếp loại",
"khung điểm",
"học bổng loại",
]
return any(keyword in lower for keyword in scoring_keywords)
def detect_has_thresholds(content: str) -> bool:
lower = content.lower()
threshold_patterns = [
r"từ\s+\d+([,.]\d+)?\s+đến",
r"dưới\s+\d+([,.]\d+)?",
r"trở lên",
r">=\s*\d+([,.]\d+)?",
r"\d+([,.]\d+)?\s*[-–]\s*\d+([,.]\d+)?",
r"không vượt quá\s+\d+",
r"ít nhất\s+\d+",
r"tối đa\s+\d+",
r"tối thiểu\s+\d+",
]
return any(re.search(pattern, lower) for pattern in threshold_patterns)
def detect_needs_structured_extraction(content: str, content_type: str) -> bool:
return (
content_type == "scoring_form_table"
or detect_has_table(content)
or detect_has_formula(content)
or detect_has_thresholds(content)
)
def resolve_chapter(chapter: Optional[str]) -> str:
return chapter if chapter else NO_CHAPTER
def create_section(
section_level: str,
page_number: int,
content_type: str,
index: int,
document_title: Optional[str],
part: Optional[str],
chapter: Optional[str],
article: Optional[str],
title: str,
article_number: Optional[int] = None,
) -> dict[str, Any]:
return {
"section_id": make_section_id(
section_level=section_level,
page_start=page_number,
index=index,
document_title=document_title,
chapter=chapter,
article=article,
content_type=content_type,
),
"section_level": section_level,
"document_title": document_title,
"part": part,
"chapter": resolve_chapter(chapter),
"article": article,
"title": title,
"content_type": content_type,
"page_start": page_number,
"page_end": page_number,
"content_lines": [],
"pages": [],
"tables": [],
"highlights": [],
}
def close_section(
current_section: Optional[dict[str, Any]],
sections: list[dict[str, Any]],
) -> None:
if current_section is None:
return
content_lines = current_section.get("content_lines", [])
content = "\n".join(content_lines).strip()
if not content:
return
pages = current_section.get("pages", [])
current_section["content"] = content
current_section["page_end"] = max(pages) if pages else current_section["page_start"]
current_section["has_table"] = detect_has_table(content)
current_section["has_formula"] = detect_has_formula(content)
current_section["has_scoring_rule"] = detect_has_scoring_rule(content)
current_section["has_thresholds"] = detect_has_thresholds(content)
current_section["needs_structured_extraction"] = detect_needs_structured_extraction(
content=content,
content_type=current_section["content_type"],
)
current_section.pop("content_lines", None)
current_section.pop("pages", None)
sections.append(current_section)
def should_close_on_content_type_change(
current_section: Optional[dict[str, Any]],
new_content_type: str,
) -> bool:
if current_section is None:
return False
return current_section.get("content_type") != new_content_type
def should_split_long_non_article_section(
current_section: Optional[dict[str, Any]],
) -> bool:
if current_section is None:
return False
if current_section.get("section_level") != "non_article":
return False
current_content = "\n".join(current_section.get("content_lines", []))
return len(current_content) >= MAX_NON_ARTICLE_CHARS
def build_structured_sections(
line_records: list[dict[str, Any]],
lookup_dict: dict[tuple[int, int], dict[str, Any]],
) -> list[dict[str, Any]]:
sections: list[dict[str, Any]] = []
current_document_title: Optional[str] = None
current_part: Optional[str] = None
current_chapter: Optional[str] = None
current_section: Optional[dict[str, Any]] = None
section_index = 1
for record in line_records:
line = record["line"]
line_type = record["line_type"]
page_number = record["page_number"]
content_type = record["content_type"]
if should_close_on_content_type_change(current_section, content_type):
close_section(current_section, sections)
current_section = None
if line_type == "document_title":
close_section(current_section, sections)
current_section = None
current_document_title = line
current_part = None
current_chapter = None
continue
if line_type == "part":
close_section(current_section, sections)
current_section = None
current_part = line
current_chapter = None
continue
if line_type == "chapter":
close_section(current_section, sections)
current_section = None
current_chapter = line
continue
if line_type == "article":
close_section(current_section, sections)
article, title, article_number = extract_article_info(line)
lookup_key = (page_number, article_number)
excel_data = lookup_dict.get(lookup_key)
if not excel_data:
print(f"DEBUG: Dropped article {article_number} on page {page_number}. Not found in lookup_dict.")
current_section = None
continue
golden_id = str(excel_data.get("Dinh_dang_2", ""))
if "CaoDang" in golden_id:
current_section = None
continue
current_section = create_section(
section_level="article",
page_number=page_number,
content_type=content_type,
index=section_index,
document_title=str(excel_data.get("Ten_van_ban", current_document_title)),
part=current_part,
chapter=str(excel_data.get("Chuong", current_chapter)),
article=article,
title=str(excel_data.get("Ten_dieu", title)),
article_number=article_number,
)
current_section["section_id"] = golden_id
current_section["content_lines"].append(line)
current_section["pages"].append(page_number)
section_index += 1
continue
if current_section is None:
continue
current_section["content_lines"].append(line)
current_section["pages"].append(page_number)
close_section(current_section, sections)
return sections
def validate_sections(sections: list[dict[str, Any]]) -> list[dict[str, Any]]:
issues = []
seen_ids = set()
for section in sections:
section_id = section["section_id"]
if section_id in seen_ids:
issues.append(
{
"section_id": section_id,
"issue": "duplicate_section_id",
"severity": "high",
}
)
seen_ids.add(section_id)
if section["page_end"] < section["page_start"]:
issues.append(
{
"section_id": section_id,
"issue": "page_end_before_page_start",
"severity": "high",
}
)
if (
section["content_type"] == "regulation_text"
and section["section_level"] == "non_article"
and len(section["content"]) > MAX_NON_ARTICLE_CHARS + 300
):
issues.append(
{
"section_id": section_id,
"issue": "long_non_article_regulation_section",
"severity": "medium",
"page_start": section["page_start"],
"page_end": section["page_end"],
"content_length": len(section["content"]),
}
)
return issues
def build_structure_report(sections: list[dict[str, Any]]) -> dict[str, Any]:
content_type_count: dict[str, int] = {}
section_level_count: dict[str, int] = {}
for section in sections:
content_type = section["content_type"]
section_level = section["section_level"]
content_type_count[content_type] = content_type_count.get(content_type, 0) + 1
section_level_count[section_level] = (
section_level_count.get(section_level, 0) + 1
)
validation_issues = validate_sections(sections)
return {
"total_sections": len(sections),
"total_article_sections": sum(
1 for s in sections if s["section_level"] == "article"
),
"total_non_article_sections": sum(
1 for s in sections if s["section_level"] == "non_article"
),
"content_type_count": content_type_count,
"section_level_count": section_level_count,
"sections_with_tables": [
{
"section_id": s["section_id"],
"title": s["title"],
"page_start": s["page_start"],
"page_end": s["page_end"],
}
for s in sections
if s["has_table"]
],
"sections_with_formulas": [
{
"section_id": s["section_id"],
"title": s["title"],
"page_start": s["page_start"],
"page_end": s["page_end"],
}
for s in sections
if s["has_formula"]
],
"sections_with_scoring_rules": [
{
"section_id": s["section_id"],
"title": s["title"],
"page_start": s["page_start"],
"page_end": s["page_end"],
}
for s in sections
if s["has_scoring_rule"]
],
"sections_with_thresholds": [
{
"section_id": s["section_id"],
"title": s["title"],
"page_start": s["page_start"],
"page_end": s["page_end"],
}
for s in sections
if s["has_thresholds"]
],
"sections_need_structured_extraction": [
{
"section_id": s["section_id"],
"title": s["title"],
"content_type": s["content_type"],
"page_start": s["page_start"],
"page_end": s["page_end"],
}
for s in sections
if s["needs_structured_extraction"]
],
"validation_issues": validation_issues,
}
def main() -> None:
config = load_yaml(CONFIG_PATH)
pages_path = Path(config["input"]["pages"])
pages = load_json(pages_path)
target_content_types = config["target_content_types"]
line_records = pages_to_line_records(
pages=pages,
target_content_types=target_content_types,
)
cohort = os.environ.get("COHORT", "UNKNOWN")
lookup_dict = {}
if cohort in ["K48-K49", "K50", "K51"]:
file_prefix = "K48_49" if cohort == "K48-K49" else cohort
excel_file = f"data/raw/gpt_extracted/{file_prefix}_extracted.xlsx"
if os.path.exists(excel_file):
df = pd.read_excel(excel_file)
for _, row in df.iterrows():
try:
trang = int(row["Trang"])
dieu = int(row["So_dieu"])
lookup_dict[(trang, dieu)] = row.to_dict()
except (ValueError, TypeError):
continue
structured_sections = build_structured_sections(line_records, lookup_dict)
structure_report = build_structure_report(structured_sections)
save_json(line_records, Path(config["output"]["line_records"]))
save_json(structured_sections, Path(config["output"]["structured_sections"]))
save_json(structure_report, Path(config["output"]["structure_report"]))
print("Structure parsing completed.")
print(f"Line records: {len(line_records)}")
print(f"Structured sections: {structure_report['total_sections']}")
print(f"Article sections: {structure_report['total_article_sections']}")
print(f"Non-article sections: {structure_report['total_non_article_sections']}")
print(f"Validation issues: {len(structure_report['validation_issues'])}")
if __name__ == "__main__":
main()
|