Skip to content

Commit 3842c80

Browse files
authored
Merge pull request #35 from TakaValley/TaKaValley/FileNameSpelling
Fix file name spelling with feature changes.
2 parents 531087d + dcda8a9 commit 3842c80

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

SampleCode/Python/sample_identify_and_merge_cross_page_tales.ipynb renamed to SampleCode/Python/sample_identify_and_merge_cross_page_tables.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@
470470
" print(\"=========================================================\")\n",
471471
" start_idx = 0\n",
472472
" for merged_table in merged_table_list:\n",
473-
" print(f\"Merged result of table {\", \".join([str(idx) for idx in merged_table[\"table_idx_list\"]])}\")\n",
473+
" print(f\"Merged result of table {', '.join([str(idx) for idx in merged_table['table_idx_list']])}\")\n",
474474
" print(\"-----------------------------------------------------\")\n",
475475
" print(merged_table[\"content\"])\n",
476476
" print(\"-----------------------------------------------------\")\n",

SampleCode/Python/sample_identify_and_merge_cross_page_tales.py renamed to SampleCode/Python/sample_identify_and_merge_cross_page_tables.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# --------------------------------------------------------------------------
88

99
"""
10-
FILE: sample_identify_and_merge_cross_page_tales.py
10+
FILE: sample_identify_and_merge_cross_page_tables.py
1111
1212
DESCRIPTION:
1313
@@ -406,7 +406,7 @@ def identify_and_merge_cross_page_tables(input_file_path):
406406
print("=========================================================")
407407
start_idx = 0
408408
for merged_table in merged_table_list:
409-
print(f"Merged result of table {", ".join([str(idx) for idx in merged_table["table_idx_list"]])}")
409+
print(f"Merged result of table {', '.join([str(idx) for idx in merged_table['table_idx_list']])}")
410410
print("-----------------------------------------------------")
411411
print(merged_table["content"])
412412
print("-----------------------------------------------------")

SampleCode/Python/sample_identify_cross_page_tables.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# --------------------------------------------------------------------------
88

99
"""
10-
FILE: sample_disambiguate_similar_characters.py
10+
FILE: sample_identify_cross_page_tables.py
1111
1212
DESCRIPTION:
1313

SampleCode/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ There are usually some pre/post processing steps that are needed to get the best
3333
| --- | --- |
3434
| [sample_disambiguate_similar_characters.ipynb](Python/sample_disambiguate_similar_characters.ipynb) and [sample_disambiguate_similar_characters.py](Python/sample_disambiguate_similar_characters.py) | Sample postprocessing script to disambiguate similar characters based on business rules. |
3535
| [sample_identify_cross_page_tables.ipynb](Python/sample_identify_cross_page_tables.ipynb) and [sample_identify_cross_page_tables.py](Python/sample_identify_cross_page_tables.py) | Sample postprocessing script to identify cross-page tables based on business rules. |
36-
| [sample_identify_and_merge_cross_page_tales.ipynb](Python/sample_identify_and_merge_cross_page_tales.ipynb) and [sample_identify_and_merge_cross_page_tales.py](Python/sample_identify_and_merge_cross_page_tales.py) | Sample postprocessing script to identify and merge cross-page tables based on business rules. |
36+
| [sample_identify_and_merge_cross_page_tables.ipynb](Python/sample_identify_and_merge_cross_page_tables.ipynb) and [sample_identify_and_merge_cross_page_tables.py](Python/sample_identify_and_merge_cross_page_tables.py) | Sample postprocessing script to identify and merge cross-page tables based on business rules. |

0 commit comments

Comments
 (0)