Skip to content

Commit 8f09fcd

Browse files
committed
Merge branch 'main' of github.com:DS4SD/docling into release_v3
2 parents c5d1fbf + 3b53bd3 commit 8f09fcd

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

docling/datamodel/pipeline_options.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,7 @@ class EasyOcrOptions(OcrOptions):
142142
confidence_threshold: float = 0.65
143143

144144
model_storage_directory: Optional[str] = None
145+
recog_network: Optional[str] = "standard"
145146
download_enabled: bool = True
146147

147148
model_config = ConfigDict(

docling/models/easyocr_model.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ def __init__(
6666
lang_list=self.options.lang,
6767
gpu=use_gpu,
6868
model_storage_directory=self.options.model_storage_directory,
69+
recog_network=self.options.recog_network,
6970
download_enabled=self.options.download_enabled,
7071
verbose=False,
7172
)

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ nav:
7575
- "Table export": examples/export_tables.py
7676
- "Multimodal export": examples/export_multimodal.py
7777
- "Force full page OCR": examples/full_page_ocr.py
78-
- "Accelerator options": examples/run_with_acclerators.py
78+
- "Accelerator options": examples/run_with_accelerator.py
7979
- Chunking:
8080
- "Hybrid chunking": examples/hybrid_chunking.ipynb
8181
- RAG / QA:

0 commit comments

Comments
 (0)