From 60302c312ce0b35ff2dfac219dc8546fa1a8fe21 Mon Sep 17 00:00:00 2001 From: Christoph Auer Date: Wed, 17 Jul 2024 15:51:28 +0200 Subject: [PATCH] Documentation improvements Signed-off-by: Christoph Auer --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bcbe7ac7..470936ab 100644 --- a/README.md +++ b/README.md @@ -71,11 +71,11 @@ This can improve output quality if you find that multiple columns in extracted t ```python pipeline_options = PipelineOptions(do_table_structure=True) -pipeline_options.table_structure_options.do_cell_matching = True +pipeline_options.table_structure_options.do_cell_matching = False # Uses text cells predicted from table structure model doc_converter = DocumentConverter( artifacts_path=artifacts_path, - pipeline_options=pipeline_options, # Controls if OCR is applied (ignores programmatic content) + pipeline_options=pipeline_options, ) ```