mistocr 0.2.8__py3-none-any.whl → 0.2.9__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- mistocr/__init__.py +1 -1
- mistocr/refine.py +44 -4
- {mistocr-0.2.8.dist-info → mistocr-0.2.9.dist-info}/METADATA +1 -1
- mistocr-0.2.9.dist-info/RECORD +11 -0
- mistocr-0.2.8.dist-info/RECORD +0 -11
- {mistocr-0.2.8.dist-info → mistocr-0.2.9.dist-info}/WHEEL +0 -0
- {mistocr-0.2.8.dist-info → mistocr-0.2.9.dist-info}/entry_points.txt +0 -0
- {mistocr-0.2.8.dist-info → mistocr-0.2.9.dist-info}/licenses/LICENSE +0 -0
- {mistocr-0.2.8.dist-info → mistocr-0.2.9.dist-info}/top_level.txt +0 -0
mistocr/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.2.
|
|
1
|
+
__version__ = "0.2.9"
|
mistocr/refine.py
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
# AUTOGENERATED! DO NOT EDIT! File to edit: ../nbs/01_refine.ipynb.
|
|
4
4
|
|
|
5
5
|
# %% auto 0
|
|
6
|
-
__all__ = ['describe_img_prompt', 'get_hdgs', 'add_pg_hdgs', 'read_pgs_pg', 'fmt_hdgs_idx',
|
|
7
|
-
'HeadingCorrections', 'fix_hdg_hierarchy', 'mk_fixes_lut', 'apply_hdg_fixes',
|
|
8
|
-
'
|
|
9
|
-
'add_img_descs']
|
|
6
|
+
__all__ = ['prompt_fix_hdgs', 'describe_img_prompt', 'get_hdgs', 'add_pg_hdgs', 'read_pgs_pg', 'fmt_hdgs_idx',
|
|
7
|
+
'HeadingCorrection', 'HeadingCorrections', 'fix_hdg_hierarchy', 'mk_fixes_lut', 'apply_hdg_fixes',
|
|
8
|
+
'fix_hdgs', 'ImgDescription', 'describe_img', 'limit', 'parse_r', 'describe_imgs', 'save_img_descs',
|
|
9
|
+
'add_descs_to_pg', 'add_descs_to_pgs', 'add_img_descs']
|
|
10
10
|
|
|
11
11
|
# %% ../nbs/01_refine.ipynb 3
|
|
12
12
|
from fastcore.all import *
|
|
@@ -66,6 +66,46 @@ class HeadingCorrection(BaseModel):
|
|
|
66
66
|
class HeadingCorrections(BaseModel):
|
|
67
67
|
corrections: list[HeadingCorrection]
|
|
68
68
|
|
|
69
|
+
# %% ../nbs/01_refine.ipynb 20
|
|
70
|
+
prompt_fix_hdgs = """Fix markdown heading hierarchy errors while preserving the document's intended structure.
|
|
71
|
+
|
|
72
|
+
INPUT FORMAT: Each heading is prefixed with its index number (e.g., "0. # Title ... page 1")
|
|
73
|
+
|
|
74
|
+
ANALYSIS STEPS (think through these before outputting corrections):
|
|
75
|
+
1. For each numbered heading (e.g., "4.1", "2.a", "A.1"), identify its parent heading (e.g., "4", "2", "A")
|
|
76
|
+
2. Verify the child heading is exactly one # deeper than its parent
|
|
77
|
+
3. If not, mark it for correction
|
|
78
|
+
|
|
79
|
+
RULES - Apply these fixes in order:
|
|
80
|
+
|
|
81
|
+
1. **Single H1 rule**: Documents must have exactly ONE # heading (typically the document title at the top)
|
|
82
|
+
- If index 0 is already #, then all subsequent headings (index 1+) must be ## or deeper
|
|
83
|
+
- If no H1 exists, the first major heading should be #, and all others ## or deeper
|
|
84
|
+
- NO exceptions: appendices, references, and all sections are ## or deeper after the title
|
|
85
|
+
|
|
86
|
+
2. **Infer depth from numbering patterns**: If headings contain section numbers, deeper nesting means deeper heading level
|
|
87
|
+
- Parent section (e.g., "1", "2", "A") MUST be shallower than child (e.g., "1.1", "2.a", "A.1")
|
|
88
|
+
- Child section MUST be exactly one # deeper than parent
|
|
89
|
+
- Works with any numbering: "1/1.1/1.1.1", "A/A.1/A.1.a", "I/I.A/I.A.1", etc.
|
|
90
|
+
|
|
91
|
+
3. **Level jumps**: Headings can only increase by one # at a time when moving deeper
|
|
92
|
+
- Wrong: ## Section → ##### Subsection
|
|
93
|
+
- Fixed: ## Section → ### Subsection
|
|
94
|
+
|
|
95
|
+
4. **Decreasing levels is OK**: Moving back up the hierarchy (### to ##) is valid for new sections
|
|
96
|
+
|
|
97
|
+
5. **Unnumbered headings in numbered documents**: If the document uses numbered headings consistently, any unnumbered heading appearing within that structure is likely misclassified bold text and should be converted to regular text (output the heading text without any # symbols in the corrected field)
|
|
98
|
+
|
|
99
|
+
OUTPUT: Return a list of corrections, where each correction has:
|
|
100
|
+
- index: the heading's index number
|
|
101
|
+
- corrected: the fixed heading text (without the index prefix), or empty string "" to remove the heading entirely
|
|
102
|
+
IMPORTANT: Preserve the " ... page N" suffix in all corrected headings.
|
|
103
|
+
Only include headings that need changes.
|
|
104
|
+
|
|
105
|
+
Headings to analyze:
|
|
106
|
+
{headings_list}
|
|
107
|
+
"""
|
|
108
|
+
|
|
69
109
|
# %% ../nbs/01_refine.ipynb 22
|
|
70
110
|
def fix_hdg_hierarchy(
|
|
71
111
|
hdgs: list[str], # List of markdown headings
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
mistocr/__init__.py,sha256=F8OVhAhMXSkvvXYgZtbPn2SG1AQC3joK4yu-FrHt81Y,22
|
|
2
|
+
mistocr/_modidx.py,sha256=55k_EmMPrRmLa04qCE-_8lukJPCax66q5MALfpa8T4A,4154
|
|
3
|
+
mistocr/core.py,sha256=KH5ND6ZMmETj9m9A-Ivtw5N2L-qm9vGwYgvHAzg-BsA,7218
|
|
4
|
+
mistocr/pipeline.py,sha256=k5rtr9ccxTgwQAzw533iMIL9qwiCofugWv0fhotLzaI,1639
|
|
5
|
+
mistocr/refine.py,sha256=wtfS_bHlD39R8T2RbITgNX8cDCIPXI9gRrJ4y9nI_rM,12807
|
|
6
|
+
mistocr-0.2.9.dist-info/licenses/LICENSE,sha256=xV8xoN4VOL0uw9X8RSs2IMuD_Ss_a9yAbtGNeBWZwnw,11337
|
|
7
|
+
mistocr-0.2.9.dist-info/METADATA,sha256=n9pFeWhh-Vzd7KR7s6s3R0mdJ3xvpexujEH-0iQsRQY,8416
|
|
8
|
+
mistocr-0.2.9.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
9
|
+
mistocr-0.2.9.dist-info/entry_points.txt,sha256=HjAiHozobM-alm_6bTF-ehRr2DD3KYE9PgRngelONOY,36
|
|
10
|
+
mistocr-0.2.9.dist-info/top_level.txt,sha256=LelTYnSpSXLy1Hb1m2YP3gt8luwP-I8KV0NjP_ucdSs,8
|
|
11
|
+
mistocr-0.2.9.dist-info/RECORD,,
|
mistocr-0.2.8.dist-info/RECORD
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
mistocr/__init__.py,sha256=G6Dbxq2ws-1ZAXwDD8q0KWueYtso_Y6Uyvtj8sRWsPI,22
|
|
2
|
-
mistocr/_modidx.py,sha256=55k_EmMPrRmLa04qCE-_8lukJPCax66q5MALfpa8T4A,4154
|
|
3
|
-
mistocr/core.py,sha256=KH5ND6ZMmETj9m9A-Ivtw5N2L-qm9vGwYgvHAzg-BsA,7218
|
|
4
|
-
mistocr/pipeline.py,sha256=k5rtr9ccxTgwQAzw533iMIL9qwiCofugWv0fhotLzaI,1639
|
|
5
|
-
mistocr/refine.py,sha256=yLnpqCEHRYfo1QQoAsgqk4INUjz_lYU8-tfEDgTC738,10544
|
|
6
|
-
mistocr-0.2.8.dist-info/licenses/LICENSE,sha256=xV8xoN4VOL0uw9X8RSs2IMuD_Ss_a9yAbtGNeBWZwnw,11337
|
|
7
|
-
mistocr-0.2.8.dist-info/METADATA,sha256=qATVQfErJIL_AbUSis3DhuM59fECxCWvgEoM15cRXf8,8416
|
|
8
|
-
mistocr-0.2.8.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
9
|
-
mistocr-0.2.8.dist-info/entry_points.txt,sha256=HjAiHozobM-alm_6bTF-ehRr2DD3KYE9PgRngelONOY,36
|
|
10
|
-
mistocr-0.2.8.dist-info/top_level.txt,sha256=LelTYnSpSXLy1Hb1m2YP3gt8luwP-I8KV0NjP_ucdSs,8
|
|
11
|
-
mistocr-0.2.8.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|